We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9644e4d commit a2ab345Copy full SHA for a2ab345
src/UI/HistoryWidget.js
@@ -223,7 +223,10 @@ export class HistoryWidget extends HistoryCollectionWidget {
223
}
224
225
#afterPartHistoryMutated() {
226
- this._idsSignature = this.#computeIdsSignature();
+ const nextIdsSignature = this.#computeIdsSignature();
227
+ const idsChanged = nextIdsSignature !== this._idsSignature;
228
+ this._idsSignature = nextIdsSignature;
229
+ if (idsChanged) this.render();
230
this._syncHeaderState(true);
231
this.#refreshOpenForms();
232
this._syncFeatureDimensionOverlay();
0 commit comments