Added filter constraint for manufacturing status.

This commit is contained in:
Jan Böhmer 2022-09-04 00:45:10 +02:00
parent 7b3538a2c7
commit ec5e956e31
11 changed files with 342 additions and 1 deletions

View file

@ -0,0 +1,15 @@
import {Controller} from "@hotwired/stimulus";
import TomSelect from "tom-select";
export default class extends Controller {
_tomSelect;
connect() {
this._tomSelect = new TomSelect(this.element, {
maxItems: 1000,
allowEmptyOption: true,
plugins: ['remove_button'],
});
}
}