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/recovery_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/recovery_form.vue')
| -rw-r--r-- | src/components/mfa_form/recovery_form.vue | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/mfa_form/recovery_form.vue b/src/components/mfa_form/recovery_form.vue index 7c594228..a9cf39aa 100644 --- a/src/components/mfa_form/recovery_form.vue +++ b/src/components/mfa_form/recovery_form.vue @@ -56,11 +56,15 @@ > <div class="alert error"> {{ error }} - <FAIcon - class="fa-scale-110 fa-old-padding" - icon="times" + <button + class="button-unstyled" @click="clearError" - /> + > + <FAIcon + class="fa-scale-110 fa-old-padding" + icon="times" + /> + </button> </div> </div> </div> |
