mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 00:32:52 +08:00
FIX: Show error messages when adding permalinks in the admin UI (#12545)
Also, check for uniqueness of permalinks before attempting to save.
This commit is contained in:

committed by
GitHub

parent
c89f97aafe
commit
70970bb791
@ -69,9 +69,13 @@ export default Component.extend({
|
||||
this.set("formSubmitted", false);
|
||||
|
||||
let error;
|
||||
if (e.responseJSON && e.responseJSON.errors) {
|
||||
if (
|
||||
e.jqXHR &&
|
||||
e.jqXHR.responseJSON &&
|
||||
e.jqXHR.responseJSON.errors
|
||||
) {
|
||||
error = I18n.t("generic_error_with_reason", {
|
||||
error: e.responseJSON.errors.join(". "),
|
||||
error: e.jqXHR.responseJSON.errors.join(". "),
|
||||
});
|
||||
} else {
|
||||
error = I18n.t("generic_error");
|
||||
|
Reference in New Issue
Block a user