Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
Merge branch 'main' into composer_copy_paste
Dieser Commit ist enthalten in:
Commit
c0ed596ff9
1 geänderte Dateien mit 5 neuen und 2 gelöschten Zeilen
|
@ -4,7 +4,7 @@ import { get, set } from "@ember/object";
|
|||
import Mixin from "@ember/object/mixin";
|
||||
import { deepEqual } from "discourse-common/lib/object";
|
||||
|
||||
let observedCache = [];
|
||||
const observedCache = [];
|
||||
|
||||
export default Mixin.create({
|
||||
didInsertElement() {
|
||||
|
@ -36,7 +36,10 @@ export default Mixin.create({
|
|||
listProperties(componentType, opts).forEach((property) => {
|
||||
if (observedCache.includes(property)) {
|
||||
obj.removeObserver(property, this, this.toggleUndo);
|
||||
observedCache = observedCache.filter((p) => p !== property);
|
||||
let index = observedCache.indexOf(property);
|
||||
if (index !== -1) {
|
||||
observedCache.splice(index, 1);
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
Laden …
In neuem Issue referenzieren