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/files | |
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/files')
-rw-r--r-- | apps/files/src/components/TransferOwnershipDialogue.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/src/components/TransferOwnershipDialogue.vue b/apps/files/src/components/TransferOwnershipDialogue.vue index 8e96cdebf54..90af77175af 100644 --- a/apps/files/src/components/TransferOwnershipDialogue.vue +++ b/apps/files/src/components/TransferOwnershipDialogue.vue @@ -25,12 +25,12 @@ <form @submit.prevent="submit"> <p class="transfer-select-row"> <span>{{ readableDirectory }}</span> - <Button v-if="directory === undefined" @click.prevent="start"> + <ButtonVue v-if="directory === undefined" @click.prevent="start"> {{ t('files', 'Choose file or folder to transfer') }} - </Button> - <Button v-else @click.prevent="start"> + </ButtonVue> + <ButtonVue v-else @click.prevent="start"> {{ t('files', 'Change') }} - </Button> + </ButtonVue> <span class="error">{{ directoryPickerError }}</span> </p> <p class="new-owner-row"> @@ -72,7 +72,7 @@ import { generateOcsUrl } from '@nextcloud/router' import { getFilePickerBuilder, showSuccess } from '@nextcloud/dialogs' import Multiselect from '@nextcloud/vue/dist/Components/Multiselect' import Vue from 'vue' -import Button from '@nextcloud/vue/dist/Components/Button' +import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue' import logger from '../logger' @@ -87,7 +87,7 @@ export default { name: 'TransferOwnershipDialogue', components: { Multiselect, - Button, + ButtonVue, }, data() { return { |