Skip to content
Snippets Groups Projects
Verified Commit 96b9fc7e authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: Improve select reset functionality with additional hiding logic

Summary of changes
- Added a call to the `hide` function within the `reset` method of the Select class.
parent 97c1ab91
No related branches found
No related tags found
No related merge requests found
...@@ -563,6 +563,8 @@ class Select extends CustomControl { ...@@ -563,6 +563,8 @@ class Select extends CustomControl {
reset() { reset() {
try { try {
hide.call(this);
setSelection.call(this, null).then(() => { setSelection.call(this, null).then(() => {
const lazyLoadFlag = this.getOption("features.lazyLoad"); const lazyLoadFlag = this.getOption("features.lazyLoad");
const remoteFilterFlag = getFilterMode.call(this) === FILTER_MODE_REMOTE; const remoteFilterFlag = getFilterMode.call(this) === FILTER_MODE_REMOTE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment