mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 15:10:12 +01:00
🎨 copyTextByType change bullet point from '*' to '-' (#15874)
This commit is contained in:
parent
2f9d2afcd3
commit
a00af12ce6
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ export const copyTextByType = async (ids: string[],
|
||||||
for (let i = 0; i < ids.length; i++) {
|
for (let i = 0; i < ids.length; i++) {
|
||||||
const id = ids[i];
|
const id = ids[i];
|
||||||
if (ids.length > 1) {
|
if (ids.length > 1) {
|
||||||
text += "* ";
|
text += "- ";
|
||||||
}
|
}
|
||||||
if (type === "ref") {
|
if (type === "ref") {
|
||||||
const response = await fetchSyncPost("/api/block/getRefText", {id});
|
const response = await fetchSyncPost("/api/block/getRefText", {id});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue