aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>2023-06-26 14:48:42 +0200
committerGitHub <noreply@github.com>2023-06-26 14:48:42 +0200
commita07321f09327ceb8d400853e375e91782a1e40f5 (patch)
treeed4202ca011e5dc4edaca0cdaaa40bb20fb60193
parent9751303182069e510e67015ba81c0cd224b4a483 (diff)
downloadnextcloud-server-a07321f09327ceb8d400853e375e91782a1e40f5.tar.gz
nextcloud-server-a07321f09327ceb8d400853e375e91782a1e40f5.zip
Add "button" class to the QR code link
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
-rw-r--r--apps/settings/src/components/AuthTokenSetupDialogue.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/AuthTokenSetupDialogue.vue b/apps/settings/src/components/AuthTokenSetupDialogue.vue
index 63836290535..23a3a1f1d09 100644
--- a/apps/settings/src/components/AuthTokenSetupDialogue.vue
+++ b/apps/settings/src/components/AuthTokenSetupDialogue.vue
@@ -70,10 +70,10 @@
</div>
<div class="app-password-row">
<span class="app-password-label" />
- <a v-if="!showQR"
+ <NcButton v-if="!showQR"
@click="showQR = true">
{{ t('settings', 'Show QR code for mobile apps') }}
- </a>
+ </NcButton>
<QR v-else
:value="qrUrl" />
</div>