Skip to content

Commit

Permalink
fix account autocomplete placeholder & label
Browse files Browse the repository at this point in the history
  • Loading branch information
SazukinPavel committed Jan 30, 2025
1 parent 31e6818 commit c866511
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions admin-ui/src/components/instancesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ const searchFields = computed(() => [
multiple: true,
fetchValue: true,
title: "Account",
label: "Account",
component: AccountsAutocomplete,
},
{
Expand Down
1 change: 1 addition & 0 deletions admin-ui/src/components/invoicesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ const searchFields = computed(() => [
multiple: true,
fetchValue: true,
title: "Account",
label: "Account",
component: AccountsAutocomplete,
},
{
Expand Down
2 changes: 1 addition & 1 deletion admin-ui/src/views/History.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
key: "account",
custom: true,
component: AccountsAutocomplete,
label: "Accounts",
label: "Account",
clearable: true,
fetchValue: true,
},
Expand Down
2 changes: 1 addition & 1 deletion admin-ui/src/views/Transactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default {
type: "select",
custom: true,
component: AccountsAutocomplete,
label: "Accounts",
label: "Account",
multiple: true,
clearable: true,
fetchValue: true,
Expand Down

0 comments on commit c866511

Please sign in to comment.