Kaynağa Gözat

:rotating_light:

Vanessa 2 yıl önce
ebeveyn
işleme
25bb76f586

+ 6 - 6
app/src/history/diff.ts

@@ -101,14 +101,14 @@ export const showDiff = (data: { id: string, time: string }[]) => {
     if (data.length !== 2) {
         return;
     }
-    let left
-    let right
+    let left;
+    let right;
     if (data[0].time > data[1].time) {
-        left = data[1].id
-        right = data[0].id
+        left = data[1].id;
+        right = data[0].id;
     } else {
-        left = data[0].id
-        right = data[1].id
+        left = data[0].id;
+        right = data[1].id;
     }
     fetchPost("/api/repo/diffRepoSnapshots", {left, right}, (response) => {
         const dialog = new Dialog({

+ 1 - 1
app/src/history/history.ts

@@ -460,7 +460,7 @@ export const openHistory = () => {
                         if (id === item.id) {
                             idJSON.splice(index, 1);
                         }
-                    })
+                    });
                 } else {
                     target.classList.add("b3-list-item--focus");
                     while (idJSON.length > 1) {

+ 4 - 4
app/src/protyle/wysiwyg/index.ts

@@ -557,10 +557,10 @@ export class WYSIWYG {
                     mouseElement = newMouseElement;
                 }
                 hideElements(["select"], protyle);
-                let firstElement
+                let firstElement;
                 if (moveEvent.clientY > y) {
                     firstElement = startFirstElement || document.elementFromPoint(newLeft - 1, newTop);
-                    endLastElement = undefined
+                    endLastElement = undefined;
                 } else {
                     firstElement = document.elementFromPoint(newLeft - 1, newTop);
                     startFirstElement = undefined;
@@ -585,7 +585,7 @@ export class WYSIWYG {
                 let selectElements: Element[] = [];
                 let currentElement: Element | boolean = firstBlockElement;
                 let hasJump = false;
-                const selectBottom = endLastElement ? endLastElement.getBoundingClientRect().bottom : (newTop + newHeight)
+                const selectBottom = endLastElement ? endLastElement.getBoundingClientRect().bottom : (newTop + newHeight);
                 while (currentElement) {
                     if (currentElement && !currentElement.classList.contains("protyle-attr")) {
                         const currentRect = currentElement.getBoundingClientRect();
@@ -628,7 +628,7 @@ export class WYSIWYG {
                     }
                 }
                 if (moveEvent.clientY <= y && !endLastElement) {
-                    endLastElement = selectElements[selectElements.length - 1]
+                    endLastElement = selectElements[selectElements.length - 1];
                 }
                 if (selectElements.length === 1 && !selectElements[0].classList.contains("list") && !selectElements[0].classList.contains("bq") && !selectElements[0].classList.contains("sb")) {
                     // 只有一个 p 时不选中

+ 1 - 1
app/src/util/newFile.ts

@@ -82,7 +82,7 @@ export const newFile = (notebookId?: string, currentPath?: string, paths?: strin
                 });
             }
         } else {
-            let title = data.data.path || "Untitled"
+            let title = data.data.path || "Untitled";
             title = title.substring(title.lastIndexOf("/") + 1);
             if (!validateName(title)) {
                 return;