diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-08-11 14:33:34 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-08-25 08:37:46 +0200 |
commit | 708018795863999b674d1e3e900313785893d6a8 (patch) | |
tree | b961cae846572fb1baf8d4ad6cfb8d54f56cf234 /apps/comments | |
parent | 405b5de6fa408841fb242d77ca7d37c1fb87efa4 (diff) | |
download | nextcloud-server-708018795863999b674d1e3e900313785893d6a8.tar.gz nextcloud-server-708018795863999b674d1e3e900313785893d6a8.zip |
Bump @nextcloud/vue to 6.0.0-beta.3 and related
Update @nextcloud/vue to 6.0.0-beta.3
Update vue and vue-template-compiler to 2.7.8
Update calendar-availability-vue to 0.5.0-beta.1 to fix conflicts.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index 7949696928c..8e4a0d15ff0 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -71,7 +71,7 @@ :value="localMessage" @update:value="updateLocalMessage" @submit="onSubmit" /> - <Button class="comment__submit" + <ButtonVue class="comment__submit" type="tertiary-no-background" native-type="submit" :aria-label="t('comments', 'Post comment')" @@ -81,7 +81,7 @@ <span v-if="loading" class="icon-loading-small" /> <ArrowRight v-else :size="20" /> </template> - </Button> + </ButtonVue> </div> <!-- Message content --> @@ -103,7 +103,7 @@ import ActionButton from '@nextcloud/vue/dist/Components/ActionButton' import Actions from '@nextcloud/vue/dist/Components/Actions' import ActionSeparator from '@nextcloud/vue/dist/Components/ActionSeparator' import Avatar from '@nextcloud/vue/dist/Components/Avatar' -import Button from '@nextcloud/vue/dist/Components/Button' +import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue' import RichContenteditable from '@nextcloud/vue/dist/Components/RichContenteditable' import RichEditorMixin from '@nextcloud/vue/dist/Mixins/richEditor' import ArrowRight from 'vue-material-design-icons/ArrowRight' @@ -120,7 +120,7 @@ export default { ActionSeparator, ArrowRight, Avatar, - Button, + ButtonVue, Moment, RichContenteditable, }, |