From a00af12ce6c16e47fbb04fb4f4c5629f92d3b63f Mon Sep 17 00:00:00 2001 From: Achuan-2 Date: Sun, 21 Sep 2025 13:04:40 +0800 Subject: [PATCH] :art: copyTextByType change bullet point from '*' to '-' (#15874) --- app/src/protyle/toolbar/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/toolbar/util.ts b/app/src/protyle/toolbar/util.ts index 16860c3a3..7319f33c5 100644 --- a/app/src/protyle/toolbar/util.ts +++ b/app/src/protyle/toolbar/util.ts @@ -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});