mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-25 19:12:10 +03:00
fix: preloading issues caused by reference change in template (#4009)
This commit is contained in:
parent
0ded20fcb7
commit
0d70d3727d
@ -190,7 +190,7 @@ export async function buildShowcaseWorkspace(
|
|||||||
await Promise.all(
|
await Promise.all(
|
||||||
data.map(async ([id, promise]) => {
|
data.map(async ([id, promise]) => {
|
||||||
const { default: template } = await promise;
|
const { default: template } = await promise;
|
||||||
await workspace.importPageSnapshot(template, id);
|
await workspace.importPageSnapshot(structuredClone(template), id);
|
||||||
workspace.setPageMeta(id, pageMetas[id]);
|
workspace.setPageMeta(id, pageMetas[id]);
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user