Skip to content

Commit

Permalink
Merge pull request #2553 from smeup/feat/list-display-mode-default
Browse files Browse the repository at this point in the history
NC: feat: list-display-mode default value
  • Loading branch information
pasere-smeup authored Mar 4, 2025
2 parents e2d472c + 24d713f commit 1f550a7
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 @@ -100,7 +100,7 @@ export class KupAutocomplete {
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
@Prop() listDisplayMode: ItemsDisplayMode = ItemsDisplayMode.DESCRIPTION;
@Prop() listDisplayMode: ItemsDisplayMode = ItemsDisplayMode.CODE_AND_DESC;
/**
* Set error message
* @default '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class KupCombobox {
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
@Prop() listDisplayMode: ItemsDisplayMode = ItemsDisplayMode.DESCRIPTION;
@Prop() listDisplayMode: ItemsDisplayMode = ItemsDisplayMode.CODE_AND_DESC;
/**
* Set error message
* @default '''
Expand Down

0 comments on commit 1f550a7

Please sign in to comment.