diff options
| author | Henry Jameson <me@hjkos.com> | 2022-03-30 13:13:41 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-03-30 13:13:41 +0300 |
| commit | 6751c22a23778418568f8b1ec6baecf11ecb23f2 (patch) | |
| tree | 2b4099d1824e4e288c4219dbfec756cb28b9de8d /src/components/mfa_form/totp_form.vue | |
| parent | 115170f35dbbd9656f64325e6f4c7b58b8b9c07f (diff) | |
| parent | 19439910772ed5205edbb258b3d8a97315dde9b5 (diff) | |
Merge branch 'vue3-again' into vue3-no-compat
* vue3-again:
make all clickable icons into actual buttons
Diffstat (limited to 'src/components/mfa_form/totp_form.vue')
| -rw-r--r-- | src/components/mfa_form/totp_form.vue | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/components/mfa_form/totp_form.vue b/src/components/mfa_form/totp_form.vue index 4ee13992..709eb9b8 100644 --- a/src/components/mfa_form/totp_form.vue +++ b/src/components/mfa_form/totp_form.vue @@ -58,12 +58,16 @@ > <div class="alert error"> {{ error }} - <FAIcon - size="lg" - class="fa-scale-110 fa-old-padding" - icon="times" + <button + class="button-unstyled" @click="clearError" - /> + > + <FAIcon + size="lg" + class="fa-scale-110 fa-old-padding" + icon="times" + /> + </button> </div> </div> </div> |
