diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-17 00:17:29 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-08-02 10:10:25 +0200 |
commit | 2fef12fbfcad88d69c52b2a08a7a45b717d4cd66 (patch) | |
tree | bf4207ca175ef1435483f0d384798efa528247f6 /apps/comments | |
parent | f2dcdf96be4b5dba3259c9e26aeb783d2a17ffe7 (diff) | |
download | nextcloud-server-2fef12fbfcad88d69c52b2a08a7a45b717d4cd66.tar.gz nextcloud-server-2fef12fbfcad88d69c52b2a08a7a45b717d4cd66.zip |
chore: Compile assets
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/src/views/Comments.vue | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/apps/comments/src/views/Comments.vue b/apps/comments/src/views/Comments.vue index 037f8d6a3f0..d9df765c7fc 100644 --- a/apps/comments/src/views/Comments.vue +++ b/apps/comments/src/views/Comments.vue @@ -86,20 +86,21 @@ <script> import { showError } from '@nextcloud/dialogs' import { translate as t } from '@nextcloud/l10n' +import { vElementVisibility as elementVisibility } from '@vueuse/components' import VTooltip from 'v-tooltip' import Vue from 'vue' import VueObserveVisibility from 'vue-observe-visibility' -import NcEmptyContent from '@nextcloud/vue/dist/Components/NcEmptyContent.js' +import AlertCircleOutlineIcon from 'vue-material-design-icons/AlertCircleOutline.vue' +import MessageReplyTextIcon from 'vue-material-design-icons/MessageReplyText.vue' import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' +import NcEmptyContent from '@nextcloud/vue/dist/Components/NcEmptyContent.js' import RefreshIcon from 'vue-material-design-icons/Refresh.vue' -import MessageReplyTextIcon from 'vue-material-design-icons/MessageReplyText.vue' -import AlertCircleOutlineIcon from 'vue-material-design-icons/AlertCircleOutline.vue' -import Comment from '../components/Comment.vue' import { getComments, DEFAULT_LIMIT } from '../services/GetComments.ts' -import cancelableRequest from '../utils/cancelableRequest.js' import { markCommentsAsRead } from '../services/ReadComments.ts' +import cancelableRequest from '../utils/cancelableRequest.js' +import Comment from '../components/Comment.vue' import CommentView from '../mixins/CommentView' Vue.use(VTooltip) @@ -117,6 +118,10 @@ export default { AlertCircleOutlineIcon, }, + directives: { + elementVisibility, + }, + mixins: [CommentView], data() { |