Skip to content

Commit

Permalink
Merge pull request #2235 from pstaabp/tag-editor-toast
Browse files Browse the repository at this point in the history
When "tags written" is displayed, make it a good (green) message.
  • Loading branch information
Alex-Jordan authored Oct 22, 2023
2 parents 1762458 + 2be2500 commit be1aaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/TagWidget/tagwidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
if (!response.ok) return showMessage('Unable to save problem tags.');
const data = await response.json();
if (data.error) return showMessage(data.error);
showMessage(data.server_response);
showMessage(data.server_response, true);
}
}

Expand Down

0 comments on commit be1aaae

Please sign in to comment.