aboutsummaryrefslogtreecommitdiffstats
path: root/apps/comments/src/views/ActivityCommentEntry.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/src/views/ActivityCommentEntry.vue')
-rw-r--r--apps/comments/src/views/ActivityCommentEntry.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/comments/src/views/ActivityCommentEntry.vue b/apps/comments/src/views/ActivityCommentEntry.vue
index 4f7dde2c7d8..bbfe530b2e3 100644
--- a/apps/comments/src/views/ActivityCommentEntry.vue
+++ b/apps/comments/src/views/ActivityCommentEntry.vue
@@ -17,6 +17,7 @@
</template>
<script lang="ts">
+import type { PropType } from 'vue'
import { translate as t } from '@nextcloud/l10n'
import Comment from '../components/Comment.vue'
@@ -36,7 +37,7 @@ export default {
required: true,
},
reloadCallback: {
- type: Function,
+ type: Function as PropType<() => void>,
required: true,
},
},