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:
kolaente
2026-01-10 21:15:17 +01:00
parent bb16500cb5
commit fb8ee82b98
4 changed files with 4 additions and 0 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"