diff --git a/app/src/protyle/render/av/date.ts b/app/src/protyle/render/av/date.ts
index fd6694756..8daf967c1 100644
--- a/app/src/protyle/render/av/date.ts
+++ b/app/src/protyle/render/av/date.ts
@@ -5,16 +5,16 @@ export const getDateHTML = (data: IAVTable, cellElements: HTMLElement[]) => {
return item;
}
});
- let hasEndDate = true
- let hasMatch = false
+ let hasEndDate = true;
+ let hasMatch = false;
cellElements.forEach((cellElement) => {
data.rows.find(row => {
if (cellElement.parentElement.dataset.id === row.id) {
row.cells.find(cell => {
if (cell.id === cellElement.dataset.id) {
if (!cell.value || !cell.value.date || !cell.value.date.content2) {
- hasEndDate = false
- hasMatch = true
+ hasEndDate = false;
+ hasMatch = true;
}
return true;
}
@@ -24,20 +24,20 @@ export const getDateHTML = (data: IAVTable, cellElements: HTMLElement[]) => {
});
});
if (!hasMatch) {
- hasEndDate = false
+ hasEndDate = false;
}
return `
-
-
+
+
-
`
-}
+`;
+};
export const bindDateEvent = (options: { protyle: IProtyle, data: IAV, menuElement: HTMLElement }) => {
-}
+};
diff --git a/app/src/protyle/render/av/openMenuPanel.ts b/app/src/protyle/render/av/openMenuPanel.ts
index 36601ad55..aaa34ec57 100644
--- a/app/src/protyle/render/av/openMenuPanel.ts
+++ b/app/src/protyle/render/av/openMenuPanel.ts
@@ -53,14 +53,14 @@ export const openMenuPanel = (options: {
const cellRect = options.cellElements[options.cellElements.length - 1].getBoundingClientRect();
setPosition(menuElement, cellRect.left, cellRect.bottom, cellRect.height);
bindSelectEvent(options.protyle, data, menuElement, options.cellElements);
- const inputElement = menuElement.querySelector("input")
+ const inputElement = menuElement.querySelector("input");
inputElement.select();
inputElement.focus();
} else if (options.type === "date") {
const cellRect = options.cellElements[options.cellElements.length - 1].getBoundingClientRect();
setPosition(menuElement, cellRect.left, cellRect.bottom, cellRect.height);
bindDateEvent({protyle: options.protyle, data, menuElement});
- const inputElement = menuElement.querySelector("input")
+ const inputElement = menuElement.querySelector("input");
inputElement.select();
inputElement.focus();
} else {