mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 17:39:06 +02:00
12 lines
No EOL
322 B
JavaScript
12 lines
No EOL
322 B
JavaScript
import {Controller} from "@hotwired/stimulus";
|
|
import "bootstrap-select";
|
|
import 'bootstrap-select/dist/css/bootstrap-select.css'
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
$(this.element).selectpicker({
|
|
dropdownAlignRight: 'auto',
|
|
container: '#content',
|
|
});
|
|
}
|
|
} |