mirror of
https://github.com/discourse/discourse.git
synced 2025-03-07 02:30:09 +08:00

* FEATURE: Allow multiple groups which can vote when creating a poll * DEV: Fix select-kit deprecations * DEV: Fix lint
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
import MultiSelectComponent from "select-kit/components/multi-select";
|
|
|
|
export default MultiSelectComponent.extend({
|
|
pluginApiIdentifiers: ["group-chooser"],
|
|
classNames: ["group-chooser"],
|
|
selectKitOptions: {
|
|
allowAny: false
|
|
}
|
|
});
|