feat: integrate rich text editor with wiki linking functionality in ReplayEffectsSidebar

This commit is contained in:
taDuc
2026-05-26 19:48:41 +07:00
parent 092bbec6ac
commit 2a5b894a1b
6 changed files with 619 additions and 287 deletions
+1 -1
View File
@@ -947,7 +947,7 @@ function EditorPageContent() {
.filter((wiki) => wiki && wiki.operation !== "delete")
.map((wiki) => ({
id: String(wiki.id || ""),
label: `${(wiki.title || "").trim() || "Untitled wiki"} (${String(wiki.id || "")})`,
label: (wiki.title || "").trim() || "Untitled wiki",
}))
.filter((wiki) => wiki.id.length > 0);
}, [snapshotWikis]);