Don't close select field when multiple select

This commit is contained in:
kkthxbye-code 2022-06-17 22:53:51 +02:00
parent e6018cd38f
commit a6e285316a
3 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -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();