mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
feat(editor-core): async block support remove property
This commit is contained in:
@@ -453,6 +453,18 @@ export class AsyncBlock {
|
||||
});
|
||||
}
|
||||
|
||||
async removeProperty<
|
||||
T extends keyof DefaultColumnsValue = keyof DefaultColumnsValue
|
||||
>(key: T) {
|
||||
return this.services.update({
|
||||
id: this.id,
|
||||
workspace: this.raw_data.workspace,
|
||||
properties: {
|
||||
[key]: undefined,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
private async load_node(id: string): Promise<AsyncBlock | null> {
|
||||
return await this.services.load({
|
||||
workspace: this.raw_data.workspace,
|
||||
|
||||
Reference in New Issue
Block a user