We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e181918 + a37225a commit 909de8fCopy full SHA for 909de8f
1 file changed
plugins/block-shareable-procedures/src/blocks.ts
@@ -1068,7 +1068,10 @@ const procedureCallerUpdateShapeMixin = {
1068
doProcedureUpdate: function () {
1069
if (!this.getProcedureModel()) return;
1070
const id = this.getProcedureModel().getId();
1071
- if (!this.getTargetWorkspace_().getProcedureMap().has(id)) {
+ if (
1072
+ !this.getTargetWorkspace_().getProcedureMap().has(id) &&
1073
+ !this.isInFlyout
1074
+ ) {
1075
this.dispose(true);
1076
return;
1077
}
0 commit comments