fix(editor): should not update table selection after table is destroyed (#9665)

This commit is contained in:
zzj3720
2025-01-13 10:43:02 +00:00
parent 7e5e6031e8
commit 80f8944188
2 changed files with 9 additions and 2 deletions
@@ -78,7 +78,7 @@ export class SelectGroupView extends BaseGroup<
};
get tag() {
return this.data.options.find(v => v.id === this.value);
return this.data.options?.find(v => v.id === this.value);
}
protected override render(): unknown {