mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-15 19:52:52 -06:00
Don't close select field when multiple select
This commit is contained in:
parent
e6018cd38f
commit
a6e285316a
BIN
netbox/project-static/dist/netbox.js
vendored
BIN
netbox/project-static/dist/netbox.js
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox.js.map
vendored
BIN
netbox/project-static/dist/netbox.js.map
vendored
Binary file not shown.
@ -205,6 +205,11 @@ export class APISelect {
|
|||||||
onChange: () => this.handleSlimChange(),
|
onChange: () => this.handleSlimChange(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Don't close on select if multiple select
|
||||||
|
if (this.base.multiple) {
|
||||||
|
this.slim.config.closeOnSelect = false;
|
||||||
|
}
|
||||||
|
|
||||||
// Initialize API query properties.
|
// Initialize API query properties.
|
||||||
this.getStaticParams();
|
this.getStaticParams();
|
||||||
this.getDynamicParams();
|
this.getDynamicParams();
|
||||||
|
Loading…
Reference in New Issue
Block a user