close #2590 Enhancement: During setup, it's impossible to modify the default currency

This commit is contained in:
Cüneyt Şentürk
2022-09-05 17:28:06 +03:00
parent 05aa6a84c3
commit cf565f55e0
3 changed files with 40 additions and 13 deletions

View File

@ -127,11 +127,16 @@
<button
type="submit"
:disabled="button_loading"
class="relative flex items-center justify-center bg-green hover:bg-green-700 text-white px-6 py-1.5 text-base rounded-lg disabled:bg-green-100"
:disabled="button_loading"
@click="onEditForm(item, $event)"
>
<i v-if="button_loading" class="animate-submit delay-[0.28s] absolute w-2 h-2 rounded-full left-0 right-0 -top-3.5 m-auto before:absolute before:w-2 before:h-2 before:rounded-full before:animate-submit before:delay-[0.14s] after:absolute after:w-2 after:h-2 after:rounded-full after:animate-submit before:-left-3.5 after:-right-3.5 after:delay-[0.42s]"></i>
<i
class="animate-submit delay-[0.28s] absolute w-2 h-2 rounded-full left-0 right-0 -top-3.5 m-auto before:absolute before:w-2 before:h-2 before:rounded-full before:animate-submit before:delay-[0.14s]after:absolute after:w-2 after:h-2 after:rounded-full after:animate-submit before:-left-3.5 after:-right-3.5 after:delay-[0.42s]"
v-if="button_loading"
>
</i>
<span :class="[{'opacity-0': button_loading}]">
{{ translations.currencies.save }}
</span>