Skip to content

Commit

Permalink
fix(app): always propagate complete in mergeFacets
Browse files Browse the repository at this point in the history
  • Loading branch information
tuner committed Jan 22, 2024
1 parent b5b0776 commit 427cebe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions packages/app/src/sampleView/mergeFacets.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,12 @@ export default class MergeSampleFacets extends FlowNode {
}

complete() {
if (!this.#shouldUpdate) {
return;
if (this.#shouldUpdate) {
this._mergeAndPropagate(
this.provenance.getPresentState()[SAMPLE_SLICE_NAME]
);
}

this._mergeAndPropagate(
this.provenance.getPresentState()[SAMPLE_SLICE_NAME]
);
super.complete();
}

Expand Down

0 comments on commit 427cebe

Please sign in to comment.