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/dav/src | |
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/dav/src')
-rw-r--r-- | apps/dav/src/views/Availability.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/src/views/Availability.vue b/apps/dav/src/views/Availability.vue index 515b3a3b63a..5f616fe05d1 100644 --- a/apps/dav/src/views/Availability.vue +++ b/apps/dav/src/views/Availability.vue @@ -28,11 +28,11 @@ {{ $t('dav', 'Automatically set user status to "Do not disturb" outside of availability to mute all notifications.') }} </CheckboxRadioSwitch> - <Button :disabled="loading || saving" + <ButtonVue :disabled="loading || saving" type="primary" @click="save"> {{ $t('dav', 'Save') }} - </Button> + </ButtonVue> </SettingsSection> </template> @@ -53,7 +53,7 @@ import { disableUserStatusAutomation, } from '../service/PreferenceService' import jstz from 'jstimezonedetect' -import Button from '@nextcloud/vue/dist/Components/Button' +import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue' import CheckboxRadioSwitch from '@nextcloud/vue/dist/Components/CheckboxRadioSwitch' import SettingsSection from '@nextcloud/vue/dist/Components/SettingsSection' import TimezonePicker from '@nextcloud/vue/dist/Components/TimezonePicker' @@ -61,7 +61,7 @@ import TimezonePicker from '@nextcloud/vue/dist/Components/TimezonePicker' export default { name: 'Availability', components: { - Button, + ButtonVue, CheckboxRadioSwitch, CalendarAvailability, SettingsSection, |