🎨 copyTextByType change bullet point from '*' to '-' (#15874)

This commit is contained in:
Achuan-2 2025-09-21 13:04:40 +08:00 committed by GitHub
parent 2f9d2afcd3
commit a00af12ce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -221,7 +221,7 @@ export const copyTextByType = async (ids: string[],
for (let i = 0; i < ids.length; i++) {
const id = ids[i];
if (ids.length > 1) {
text += "* ";
text += "- ";
}
if (type === "ref") {
const response = await fetchSyncPost("/api/block/getRefText", {id});