mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-23 20:18:42 +08:00
fix(editor): should not update table selection after table is destroyed (#9665)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user