fix: flow field filter label
This commit is contained in:
parent
11575f3bed
commit
58885e6180
1 changed files with 4 additions and 1 deletions
|
|
@ -395,7 +395,10 @@ watch([() => pageState.inputSearch, workflowPageSize], fetchWorkflowList);
|
|||
:options="
|
||||
fieldSelectedOption.map((v) => ({
|
||||
...v,
|
||||
label: $t(v.label),
|
||||
label:
|
||||
v.value === 'name'
|
||||
? $t('general.name', { msg: $t('flow.title') })
|
||||
: $t(v.label),
|
||||
}))
|
||||
"
|
||||
:display-value="$t('general.displayField')"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue