diff options
Diffstat (limited to 'apps/settings/src/components/Encryption.vue')
-rw-r--r-- | apps/settings/src/components/Encryption.vue | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/apps/settings/src/components/Encryption.vue b/apps/settings/src/components/Encryption.vue index 72b597c61d3..4d80f9b9833 100644 --- a/apps/settings/src/components/Encryption.vue +++ b/apps/settings/src/components/Encryption.vue @@ -53,7 +53,15 @@ </template> </div> - <div v-else-if="externalBackendsEnabled" v-html="migrationMessage" /> + <div v-else-if="externalBackendsEnabled"> + {{ + t( + 'settings', + 'You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the "Default encryption module" and run {command}', + { command: '"occ encryption:migrate"' }, + ) + }} + </div> </div> </NcSettingsSection> </template> @@ -92,13 +100,6 @@ export default { defaultCheckedModule: Object.entries(encryptionModules).find((module) => module[1].default)[0], } }, - computed: { - migrationMessage() { - return t('settings', 'You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the "Default encryption module" and run {command}', { - command: '"occ encryption:migrate"', - }) - }, - }, methods: { displayWarning() { if (!this.encryptionEnabled) { |