We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71ec01 commit f68a1edCopy full SHA for f68a1ed
extensions/BugModal/web/comments.js
@@ -957,7 +957,12 @@ Bugzilla.BugModal.InstantUpdater = class InstantUpdater {
957
958
// Detect changed fields
959
currentFormData.forEach((value, key) => {
960
- if (!this.IGNORED_FIELDS.includes(key) && this.initialFormData.get(key) !== value) {
+ if (
961
+ // New or changed field
962
+ (!this.IGNORED_FIELDS.includes(key) && this.initialFormData.get(key) !== value) ||
963
+ // “Clear needinfo” checkbox for myself, which is ticked by default
964
+ key.startsWith('needinfo_override_')
965
+ ) {
966
changedFields[key] = value;
967
}
968
});
0 commit comments