diff --git a/app/assets/javascripts/discourse/controllers/edit-category.js.es6 b/app/assets/javascripts/discourse/controllers/edit-category.js.es6 index 52e0e45bc2c..ad1e1f2351b 100644 --- a/app/assets/javascripts/discourse/controllers/edit-category.js.es6 +++ b/app/assets/javascripts/discourse/controllers/edit-category.js.es6 @@ -100,16 +100,12 @@ export default ObjectController.extend(ModalFunctionality, { return name.trim().length > 0 ? name : I18n.t("preview"); }.property('name'), - buttonTitle: function() { - if (this.get('saving')) return I18n.t("saving"); - if (this.get('model.isUncategorizedCategory')) return I18n.t("save"); - return (this.get('model.id') ? I18n.t("category.save") : I18n.t("category.create")); + saveLabel: function() { + if (this.get('saving')) return "saving"; + if (this.get('model.isUncategorizedCategory')) return "save"; + return this.get('model.id') ? "category.save" : "category.create"; }.property('saving', 'model.id'), - deleteButtonTitle: function() { - return I18n.t('category.delete'); - }.property(), - showDescription: function() { return !this.get('model.isUncategorizedCategory') && this.get('model.id'); }.property('model.isUncategorizedCategory', 'model.id'), @@ -149,7 +145,6 @@ export default ObjectController.extend(ModalFunctionality, { self.send('closeModal'); model.setProperties({slug: result.category.slug, id: result.category.id }); Discourse.URL.redirectTo("/c/" + Discourse.Category.slugFor(model)); - }).catch(function(error) { if (error && error.responseText) { self.flash($.parseJSON(error.responseText).errors[0], 'error'); diff --git a/app/assets/javascripts/discourse/templates/modal/edit-category-general.hbs b/app/assets/javascripts/discourse/templates/modal/edit-category-general.hbs index e04fd2a76a7..21c724abee2 100644 --- a/app/assets/javascripts/discourse/templates/modal/edit-category-general.hbs +++ b/app/assets/javascripts/discourse/templates/modal/edit-category-general.hbs @@ -53,7 +53,7 @@
{{i18n 'category.foreground_color'}}: #{{text-field value=model.text_color placeholderKey="category.color_placeholder" maxlength="6"}} - {{color-picker colors=foregroundColors value=model.text_color}} + {{color-picker colors=foregroundColors value=model.text_color id='edit-text-color'}}
diff --git a/app/assets/javascripts/discourse/templates/modal/edit-category.hbs b/app/assets/javascripts/discourse/templates/modal/edit-category.hbs index bfd64468a60..ac5ff05850c 100644 --- a/app/assets/javascripts/discourse/templates/modal/edit-category.hbs +++ b/app/assets/javascripts/discourse/templates/modal/edit-category.hbs @@ -9,15 +9,20 @@