Skip to content

Commit

Permalink
Fix #5956 - metaKeySelection default type is changed as false
Browse files Browse the repository at this point in the history
  • Loading branch information
gucal committed Feb 14, 2024
1 parent c5ee0e5 commit de45d9e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/lib/datatable/DataTableBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export const DataTableBase = ComponentBase.extend({
lazy: false,
loading: false,
loadingIcon: null,
metaKeySelection: true,
metaKeySelection: false,
multiSortMeta: null,
onAllRowsSelect: null,
onAllRowsUnselect: null,
Expand Down
2 changes: 1 addition & 1 deletion components/lib/picklist/PickListBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const PickListBase = ComponentBase.extend({
targetSelection: null,
showSourceControls: true,
showTargetControls: true,
metaKeySelection: true,
metaKeySelection: false,
onFocus: null,
onBlur: null,
filter: false,
Expand Down
2 changes: 1 addition & 1 deletion components/lib/tree/TreeBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const TreeBase = ComponentBase.extend({
level: 0,
loading: false,
loadingIcon: null,
metaKeySelection: true,
metaKeySelection: false,
nodeTemplate: null,
onCollapse: null,
onContextMenu: null,
Expand Down
2 changes: 1 addition & 1 deletion components/lib/treeselect/TreeSelectBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const TreeSelectBase = ComponentBase.extend({
filterValue: null,
inputId: null,
inputRef: null,
metaKeySelection: true,
metaKeySelection: false,
name: null,
nodeTemplate: null,
onChange: null,
Expand Down
2 changes: 1 addition & 1 deletion components/lib/treetable/TreeTableBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export const TreeTableBase = ComponentBase.extend({
lazy: false,
loading: false,
loadingIcon: null,
metaKeySelection: true,
metaKeySelection: false,
multiSortMeta: null,
onColReorder: null,
onCollapse: null,
Expand Down

0 comments on commit de45d9e

Please sign in to comment.