diff options
author | Louis Chemineau <louis@chmn.me> | 2022-11-10 16:51:48 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2022-11-28 17:31:27 +0100 |
commit | ea946cc649b73474ab2a4dbb23e2793e906f8fca (patch) | |
tree | 8d96a21d0c40e74040c36f17a9c9026b4139c889 /apps/comments | |
parent | 173c053d41c9494e56d3301ff2a8c7ce13b79387 (diff) | |
download | nextcloud-server-ea946cc649b73474ab2a4dbb23e2793e906f8fca.tar.gz nextcloud-server-ea946cc649b73474ab2a4dbb23e2793e906f8fca.zip |
Lint and remove file_versions tests
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/src/comments-tab.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/comments/src/comments-tab.js b/apps/comments/src/comments-tab.js index ef17ce984a4..78bfb610af7 100644 --- a/apps/comments/src/comments-tab.js +++ b/apps/comments/src/comments-tab.js @@ -20,6 +20,7 @@ * */ +// eslint-disable-next-line node/no-missing-import, import/no-unresolved import MessageReplyText from '@mdi/svg/svg/message-reply-text.svg?raw' // Init Comments tab component @@ -53,7 +54,7 @@ const commentTab = new OCA.Files.Sidebar.Tab({ }, }) -window.addEventListener('DOMContentLoaded', function () { +window.addEventListener('DOMContentLoaded', function() { if (OCA.Files && OCA.Files.Sidebar) { OCA.Files.Sidebar.registerTab(commentTab) } |