Skip to content

Commit

Permalink
chore: update is-fixed-width option at select-dropdown (#5099)
Browse files Browse the repository at this point in the history
Signed-off-by: NaYeong,Kim <[email protected]>
  • Loading branch information
skdud4659 authored Nov 27, 2024
1 parent 64f4ee3 commit 4602805
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ watch(() => domainConfigGetters.language, (val) => {
:selected.sync="state.selectedTimezone"
:page-size="10"
:disabled="!state.hasReadWriteAccess"
is-fixed-width
is-filterable
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<div class="dropdown-container">
<p-select-dropdown :selected="state.selectedProvider"
:menu="state.providerList"
is-fixed-width
class="select-dropdown"
@update:selected="handleChangeProvider"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<p-select-dropdown :selected="state.selectedProvider"
:menu="state.providerList"
class="select-dropdown"
is-fixed-width
@update:selected="handleChangeProvider"
>
<template #dropdown-button="item">
Expand Down Expand Up @@ -91,6 +92,7 @@
<div class="repository">
<p-select-dropdown :selected.sync="state.selectedRepository"
:menu="state.repositoryList"
is-fixed-width
class="select-dropdown"
>
<template #dropdown-button="item">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ watch(() => store.state.user.language, (language) => {
:placeholder="$t('COMMON.PROFILE.TIMEZONE')"
:page-size="10"
is-filterable
is-fixed-width
show-delete-all-button
/>
</template>
Expand Down

0 comments on commit 4602805

Please sign in to comment.