Bläddra i källkod

:art: https://github.com/siyuan-note/siyuan/issues/5735 hl

Vanessa 2 år sedan
förälder
incheckning
a7230c0ece
1 ändrade filer med 4 tillägg och 2 borttagningar
  1. 4 2
      app/src/util/history.ts

+ 4 - 2
app/src/util/history.ts

@@ -76,7 +76,8 @@ const renderDoc = (element: HTMLElement, currentPage: number) => {
                         element.lastElementChild.lastElementChild.previousElementSibling.innerHTML = renderAssetsPreview(item.items[0].path);
                         element.lastElementChild.lastElementChild.previousElementSibling.innerHTML = renderAssetsPreview(item.items[0].path);
                     } else {
                     } else {
                         fetchPost("/api/history/getDocHistoryContent", {
                         fetchPost("/api/history/getDocHistoryContent", {
-                            historyPath: item.items[0].path
+                            historyPath: item.items[0].path,
+                            k: inputElement.value
                         }, (contentResponse) => {
                         }, (contentResponse) => {
                             onGet(contentResponse, historyEditor.protyle, [Constants.CB_GET_HISTORY, Constants.CB_GET_HTML]);
                             onGet(contentResponse, historyEditor.protyle, [Constants.CB_GET_HISTORY, Constants.CB_GET_HTML]);
                         });
                         });
@@ -402,7 +403,8 @@ export const openHistory = () => {
                     firstPanelElement.lastElementChild.lastElementChild.previousElementSibling.innerHTML = renderAssetsPreview(dataPath);
                     firstPanelElement.lastElementChild.lastElementChild.previousElementSibling.innerHTML = renderAssetsPreview(dataPath);
                 } else if (type === "doc") {
                 } else if (type === "doc") {
                     fetchPost("/api/history/getDocHistoryContent", {
                     fetchPost("/api/history/getDocHistoryContent", {
-                        historyPath: dataPath
+                        historyPath: dataPath,
+                        k: (firstPanelElement.querySelector(".b3-text-field") as HTMLInputElement).value
                     }, (response) => {
                     }, (response) => {
                         onGet(response, historyEditor.protyle, [Constants.CB_GET_HISTORY, Constants.CB_GET_HTML]);
                         onGet(response, historyEditor.protyle, [Constants.CB_GET_HISTORY, Constants.CB_GET_HTML]);
                     });
                     });