mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-02-01 22:47:40 +00:00
fix(frontend): restore loading state on FormField migrations
Add loading prop to FormField usages where is-loading class was accidentally removed during migration.
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
v-focus
|
||||
:label="$t('label.attributes.title')"
|
||||
:disabled="loading"
|
||||
:loading="loading"
|
||||
:placeholder="$t('label.attributes.titlePlaceholder')"
|
||||
type="text"
|
||||
:error="showError && label.title === '' ? $t('label.create.titleRequired') : null"
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
v-focus
|
||||
:label="$t('project.title')"
|
||||
:disabled="projectService.loading"
|
||||
:loading="projectService.loading"
|
||||
:placeholder="$t('project.create.titlePlaceholder')"
|
||||
type="text"
|
||||
name="projectTitle"
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
v-focus
|
||||
:label="$t('team.attributes.name')"
|
||||
:disabled="teamMemberService.loading"
|
||||
:loading="teamMemberService.loading"
|
||||
:placeholder="$t('team.attributes.namePlaceholder')"
|
||||
type="text"
|
||||
:error="showErrorTeamnameRequired && team.name === '' ? $t('team.attributes.nameRequired') : null"
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
v-focus
|
||||
:label="$t('team.attributes.name')"
|
||||
:disabled="teamService.loading"
|
||||
:loading="teamService.loading"
|
||||
:placeholder="$t('team.attributes.namePlaceholder')"
|
||||
type="text"
|
||||
:error="showError && team.name === '' ? $t('team.attributes.nameRequired') : null"
|
||||
|
||||
Reference in New Issue
Block a user