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/dashboard | |
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/dashboard')
-rw-r--r-- | apps/dashboard/src/DashboardApp.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dashboard/src/DashboardApp.vue b/apps/dashboard/src/DashboardApp.vue index a7ec30fdb4d..f564ec3cf5d 100644 --- a/apps/dashboard/src/DashboardApp.vue +++ b/apps/dashboard/src/DashboardApp.vue @@ -28,12 +28,12 @@ </Draggable> <div class="footer"> - <Button @click="showModal"> + <ButtonVue @click="showModal"> <template #icon> <Pencil :size="20" /> </template> {{ t('dashboard', 'Customize') }} - </Button> + </ButtonVue> </div> <Modal v-if="modal" size="large" @close="closeModal"> @@ -97,7 +97,7 @@ import { generateUrl } from '@nextcloud/router' import { getCurrentUser } from '@nextcloud/auth' import { loadState } from '@nextcloud/initial-state' import axios from '@nextcloud/axios' -import Button from '@nextcloud/vue/dist/Components/Button' +import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue' import Draggable from 'vuedraggable' import Modal from '@nextcloud/vue/dist/Components/Modal' import Pencil from 'vue-material-design-icons/Pencil.vue' @@ -129,7 +129,7 @@ export default { name: 'DashboardApp', components: { BackgroundSettings, - Button, + ButtonVue, Draggable, Modal, Pencil, |