aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/Encryption.vue
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-08-11 14:33:34 +0200
committerVincent Petry <vincent@nextcloud.com>2022-08-25 08:37:46 +0200
commit708018795863999b674d1e3e900313785893d6a8 (patch)
treeb961cae846572fb1baf8d4ad6cfb8d54f56cf234 /apps/settings/src/components/Encryption.vue
parent405b5de6fa408841fb242d77ca7d37c1fb87efa4 (diff)
downloadnextcloud-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/settings/src/components/Encryption.vue')
-rw-r--r--apps/settings/src/components/Encryption.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/Encryption.vue b/apps/settings/src/components/Encryption.vue
index aef44164e2f..d75225d1a18 100644
--- a/apps/settings/src/components/Encryption.vue
+++ b/apps/settings/src/components/Encryption.vue
@@ -43,10 +43,10 @@
<p class="margin-bottom">
{{ t('settings', 'This is the final warning: Do you really want to enable encryption?') }}
</p>
- <Button type="primary"
+ <ButtonVue type="primary"
@click="enableEncryption()">
{{ t('settings', "Enable encryption") }}
- </Button>
+ </ButtonVue>
</div>
<div v-if="encryptionEnabled">
@@ -78,7 +78,7 @@
<script>
import axios from '@nextcloud/axios'
import CheckboxRadioSwitch from '@nextcloud/vue/dist/Components/CheckboxRadioSwitch'
-import Button from '@nextcloud/vue/dist/Components/Button'
+import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue'
import SettingsSection from '@nextcloud/vue/dist/Components/SettingsSection'
import { loadState } from '@nextcloud/initial-state'
import { getLoggerBuilder } from '@nextcloud/logger'
@@ -97,7 +97,7 @@ export default {
components: {
CheckboxRadioSwitch,
SettingsSection,
- Button,
+ ButtonVue,
},
data() {
const encryptionModules = loadState('settings', 'encryption-modules')