refactor: update ItemDescriptor to use dynamic labels for values #1505

Merged
pablone merged 4 commits from hotFixItemDescriptor into master 2025-02-27 08:25:58 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 30a1cede35 - Show all commits

View File

@ -251,7 +251,7 @@ const fetchAvailableAgencies = async (formData) => {
const { options, agency } = response;
if (options) agenciesOptions.value = options;
if (agency) formData.agencyModeId = agency;
if (agency) formData.agencyModeId = agency.agencyModeFk;
};
const fetchClient = async (formData) => {