mirror of
https://github.com/discourse/discourse.git
synced 2025-04-14 10:12:56 +08:00
FIX: Should be possible to save an empty theme_field in the editor
Removing the theme_field JS object when the value was empty caused the server to maintain the previous value, making it impossible to delete the content of a field.
This commit is contained in:
parent
5d75bd4831
commit
d08939ab05
@ -60,7 +60,7 @@ const Theme = RestModel.extend({
|
||||
};
|
||||
},
|
||||
|
||||
@computed("fieldNames", "theme_fields.@each.error")
|
||||
@computed("fieldNames", "theme_fields.[]", "theme_fields.@each.error")
|
||||
fields(fieldNames) {
|
||||
const hash = {};
|
||||
Object.keys(fieldNames).forEach(target => {
|
||||
@ -208,11 +208,15 @@ const Theme = RestModel.extend({
|
||||
this.theme_fields.pushObject(field);
|
||||
themeFields[key] = field;
|
||||
} else {
|
||||
if (Ember.isEmpty(value)) {
|
||||
this.theme_fields.removeObject(themeFields[key]);
|
||||
themeFields[key] = null;
|
||||
} else {
|
||||
existingField.value = value;
|
||||
const changed =
|
||||
(Ember.isEmpty(existingField.value) && !Ember.isEmpty(value)) ||
|
||||
(Ember.isEmpty(value) && !Ember.isEmpty(existingField.value));
|
||||
|
||||
existingField.value = value;
|
||||
if (changed) {
|
||||
// Observing theme_fields.@each.value is too slow, so manually notify
|
||||
// if the value goes to/from blank
|
||||
this.notifyPropertyChange("theme_fields.[]");
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user