Don't close select field when multiple select
This commit is contained in:
parent
e6018cd38f
commit
a6e285316a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -205,6 +205,11 @@ export class APISelect {
|
|||
onChange: () => this.handleSlimChange(),
|
||||
});
|
||||
|
||||
// Don't close on select if multiple select
|
||||
if (this.base.multiple) {
|
||||
this.slim.config.closeOnSelect = false;
|
||||
}
|
||||
|
||||
// Initialize API query properties.
|
||||
this.getStaticParams();
|
||||
this.getDynamicParams();
|
||||
|
|
|
|||
Loading…
Reference in New Issue