diff --git a/client/dom/index.js b/client/dom/index.js index 72220be5..27b228e5 100644 --- a/client/dom/index.js +++ b/client/dom/index.js @@ -246,8 +246,9 @@ function CmdProto() { this.getCurrentDate = (currentFile) => { const current = currentFile || Cmd.getCurrentFile(); - const date = DOM.getByDataName('js-date', current) - .textContent + const date = DOM + .getByDataName('js-date', current) + .textContent; return date; };