mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-24 04:27:27 +08:00
chore: bump version (#1313)
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
"dependencies": {
|
||||
"@affine/debug": "workspace:*",
|
||||
"@affine/i18n": "workspace:*",
|
||||
"@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/editor": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/global": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/blocks": "0.5.0-20230304192152-02cfe2b",
|
||||
"@blocksuite/editor": "0.5.0-20230304192152-02cfe2b",
|
||||
"@blocksuite/global": "0.5.0-20230304192152-02cfe2b",
|
||||
"@blocksuite/icons": "2.0.17",
|
||||
"@blocksuite/react": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/react": "0.5.0-20230304192152-02cfe2b",
|
||||
"@blocksuite/store": "0.5.0-20230304192152-02cfe2b",
|
||||
"@emotion/cache": "^11.10.5",
|
||||
"@emotion/react": "^11.10.6",
|
||||
"@emotion/server": "^11.10.0",
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@affine/debug": "workspace:*",
|
||||
"@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
|
||||
"@blocksuite/blocks": "0.5.0-20230304192152-02cfe2b",
|
||||
"@blocksuite/store": "0.5.0-20230304192152-02cfe2b",
|
||||
"@tauri-apps/api": "^1.2.0",
|
||||
"encoding": "^0.1.13",
|
||||
"firebase": "^9.17.1",
|
||||
|
||||
@@ -201,8 +201,8 @@ export class DataCenter {
|
||||
|
||||
const workspaceUnitForPublic = new WorkspaceUnit({
|
||||
id: workspaceId,
|
||||
name: blocksuiteWorkspace.meta.name,
|
||||
avatar: blocksuiteWorkspace.meta.avatar,
|
||||
name: blocksuiteWorkspace.meta.name ?? '',
|
||||
avatar: blocksuiteWorkspace.meta.avatar ?? '',
|
||||
owner: undefined,
|
||||
published: true,
|
||||
provider: 'affine',
|
||||
|
||||
@@ -9,7 +9,7 @@ export const setDefaultAvatar = async (
|
||||
if (typeof document === 'undefined') {
|
||||
return;
|
||||
}
|
||||
const blob = await getDefaultHeadImgBlob(blocksuiteWorkspace.meta.name);
|
||||
const blob = await getDefaultHeadImgBlob(blocksuiteWorkspace.meta.name ?? '');
|
||||
if (!blob) {
|
||||
return;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
"zod": "^3.20.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blocksuite/global": "0.5.0-20230303192351-13b0dd7"
|
||||
"@blocksuite/global": "0.5.0-20230304192152-02cfe2b"
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
@@ -1 +1,2 @@
|
||||
export const DEFAULT_WORKSPACE_NAME = 'Untitled Workspace';
|
||||
export const UNTITLED_WORKSPACE_NAME = 'Untitled';
|
||||
|
||||
Reference in New Issue
Block a user