Merge pull request 'Hide security key section if TOTP is disabled' (#10192) from esm/calckey:hide-fido2 into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10192
This commit is contained in:
commit
cfd9dca7de
|
@ -10,7 +10,7 @@
|
||||||
<MkButton @click="unregister">{{ i18n.ts.unregister }}</MkButton>
|
<MkButton @click="unregister">{{ i18n.ts.unregister }}</MkButton>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="supportsCredentials">
|
<template v-if="supportsCredentials && $i.twoFactorEnabled">
|
||||||
<hr class="totp-method-sep" />
|
<hr class="totp-method-sep" />
|
||||||
|
|
||||||
<h2 class="heading">{{ i18n.ts.securityKey }}</h2>
|
<h2 class="heading">{{ i18n.ts.securityKey }}</h2>
|
||||||
|
|
Loading…
Reference in New Issue