diff options
Diffstat (limited to 'apps/comments/src/comments-tab.js')
-rw-r--r-- | apps/comments/src/comments-tab.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/comments/src/comments-tab.js b/apps/comments/src/comments-tab.js index 7b12de6de4f..ef17ce984a4 100644 --- a/apps/comments/src/comments-tab.js +++ b/apps/comments/src/comments-tab.js @@ -20,14 +20,14 @@ * */ -import MessageReplyText from 'vue-material-design-icons/MessageReplyText.vue' +import MessageReplyText from '@mdi/svg/svg/message-reply-text.svg?raw' // Init Comments tab component let TabInstance = null const commentTab = new OCA.Files.Sidebar.Tab({ id: 'comments', name: t('comments', 'Comments'), - icon: 'icon-comment', + iconSvg: MessageReplyText, async mount(el, fileInfo, context) { if (TabInstance) { @@ -53,7 +53,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) } |