Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-08-11 15:33:34 +0300
committerVincent Petry <vincent@nextcloud.com>2022-08-25 09:37:46 +0300
commit708018795863999b674d1e3e900313785893d6a8 (patch)
treeb961cae846572fb1baf8d4ad6cfb8d54f56cf234 /apps/files/src/components/TransferOwnershipDialogue.vue
parent405b5de6fa408841fb242d77ca7d37c1fb87efa4 (diff)
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/src/components/TransferOwnershipDialogue.vue')
-rw-r--r--apps/files/src/components/TransferOwnershipDialogue.vue12
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 {