fix: refs #8118 update VnDropdown options in ClaimSummary and TicketSummary components
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Benjamin Esteve 2025-03-21 09:26:09 +01:00
parent b992c3e62a
commit 3e956cda69
2 changed files with 2 additions and 3 deletions

View File

@ -211,8 +211,8 @@ function claimUrl(section) {
<template #header-right> <template #header-right>
<VnDropdown <VnDropdown
:options="claimStates" :options="claimStates"
option-value="id"
option-label="description" option-label="description"
option-value="id"
@change-state="changeState($event)" @change-state="changeState($event)"
/> />
</template> </template>

View File

@ -114,9 +114,8 @@ onMounted(async () => {
</template> </template>
<template #header-right> <template #header-right>
<VnDropdown <VnDropdown
:moduleId="entityId"
:options="editableStates"
:disable="!isEditable()" :disable="!isEditable()"
:options="editableStates"
:option-label="'name'" :option-label="'name'"
:option-value="'code'" :option-value="'code'"
@change-state="changeState($event)" @change-state="changeState($event)"