Update Blocknote (#2872)

* - update blocknote
- fix line break in notes

* - fixed parsing body error on image block

* add feature flag
This commit is contained in:
brendanlaschke
2023-12-09 10:40:54 +01:00
committed by GitHub
parent 3913e1b6a0
commit 130e4c8313
7 changed files with 300 additions and 106 deletions

View File

@ -23,6 +23,11 @@ export const seedFeatureFlags = async (
workspaceId: workspaceId,
value: true,
},
{
key: 'IS_NOTE_CREATE_IMAGES_ENABLED',
workspaceId: workspaceId,
value: true,
},
])
.execute();
};