Skip to content

Commit

Permalink
fix: select menu label issue
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <[email protected]>
  • Loading branch information
galexrt committed Jan 21, 2025
1 parent b32522f commit 691548a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ watchDebounced(query, async () => refresh(), {
:searchable-placeholder="$t('common.type', 2)"
>
<template #label>
{{ $t('common.selected', query.colleagues.length) }}
{{ $t('common.selected', query.types.length) }}
</template>

<template #option="{ option }">
Expand Down
2 changes: 1 addition & 1 deletion app/components/jobs/conduct/ConductList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const columns = [
@keydown.esc="$event.target.blur()"
>
<template #label>
{{ $t('common.selected', state.users.length) }}
{{ $t('common.selected', query.types.length) }}
</template>

<template #option="{ option }">
Expand Down

0 comments on commit 691548a

Please sign in to comment.