Skip to content

Commit

Permalink
Refactor #5141
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jan 24, 2024
1 parent 2501fc9 commit 321a3e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/lib/dropdown/BaseDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ export default {
},
highlightOnSelect: {
type: Boolean,
default: false
default: true
},
showTick: {
type: Boolean,
default: true
default: false
},
filterMessage: {
type: String,
Expand Down
4 changes: 2 additions & 2 deletions components/lib/dropdown/Dropdown.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,12 @@ export interface DropdownProps {
focusOnHover?: boolean | undefined;
/**
* Whether the selected option will be add highlight class.
* @defaultValue false
* @defaultValue true
*/
highlightOnSelect?: boolean | undefined;
/**
* Whether the selected option will be shown with a tick.
* @defaultValue true
* @defaultValue false
*/
showTick?: boolean | undefined;
/**
Expand Down

0 comments on commit 321a3e8

Please sign in to comment.