Преглед на файлове

:art: fix https://github.com/siyuan-note/siyuan/issues/10159

Vanessa преди 1 година
родител
ревизия
1fac9971e9
променени са 1 файла, в които са добавени 4 реда и са изтрити 8 реда
  1. 4 8
      app/src/protyle/gutter/index.ts

+ 4 - 8
app/src/protyle/gutter/index.ts

@@ -716,15 +716,11 @@ export class Gutter {
             accelerator: "⌘C",
             click() {
                 if (isNotEditBlock(selectsElement[0])) {
-                    let html = "";
-                    selectsElement.forEach(item => {
-                        html += removeEmbed(item);
-                    });
-                    writeText(protyle.lute.BlockDOM2StdMd(html).trimEnd());
+                    focusBlock(selectsElement[0]);
                 } else {
                     focusByRange(getEditorRange(selectsElement[0]));
-                    document.execCommand("copy");
                 }
+                document.execCommand("copy");
             }
         }, {
             label: window.siyuan.languages.copyPlainText,
@@ -1157,11 +1153,11 @@ export class Gutter {
             accelerator: "⌘C",
             click() {
                 if (isNotEditBlock(nodeElement)) {
-                    writeText(protyle.lute.BlockDOM2StdMd(removeEmbed(nodeElement)).trimEnd());
+                    focusBlock(nodeElement);
                 } else {
                     focusByRange(getEditorRange(nodeElement));
-                    document.execCommand("copy");
                 }
+                document.execCommand("copy");
             }
         }, {
             label: window.siyuan.languages.copyPlainText,