diff --git a/app/src/assets/scss/business/_history.scss b/app/src/assets/scss/business/_history.scss
index d9383e690..856ed21db 100644
--- a/app/src/assets/scss/business/_history.scss
+++ b/app/src/assets/scss/business/_history.scss
@@ -34,6 +34,6 @@
&__panel > .b3-list,
&__panel > .history__diff {
- width: 214px;
+ width: 256px;
}
}
diff --git a/app/src/history/doc.ts b/app/src/history/doc.ts
index bd0295208..4bfc32aee 100644
--- a/app/src/history/doc.ts
+++ b/app/src/history/doc.ts
@@ -42,7 +42,7 @@ const renderDoc = (element: HTMLElement, currentPage: number, id: string) => {
}
let logsHTML = "";
response.data.histories.forEach((item: string) => {
- logsHTML += `
+ logsHTML += `
${dayjs(parseInt(item) * 1000).format("YYYY-MM-DD HH:mm:ss")}
diff --git a/app/src/history/history.ts b/app/src/history/history.ts
index 9a4d2f1ee..ebbd561b5 100644
--- a/app/src/history/history.ts
+++ b/app/src/history/history.ts
@@ -209,7 +209,7 @@ ${statHTML}`;
`;
/// #else
- repoHTML += `
+ repoHTML += `
${infoHTML}
${actionHTML}
`;
@@ -274,7 +274,7 @@ const renderRmNotebook = (element: HTMLElement) => {
if (item.items.length > 0) {
logsHTML += ``;
item.items.forEach((docItem) => {
- logsHTML += `-
+ logsHTML += `
-
${escapeHtml(docItem.title)}
@@ -543,7 +543,7 @@ const bindEvent = (app: App, element: Element, dialog?: Dialog) => {
iconElement.classList.add("b3-list-item__arrow--open");
let html = "";
response.data.items.forEach((docItem: { title: string, path: string }) => {
- html += `
-
+ html += `
-
${escapeHtml(docItem.title)}