9 lines
233 B
Plaintext
9 lines
233 B
Plaintext
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
|
||
|
registerUnbound(
|
||
|
"component-for-collection",
|
||
|
(collectionIdentifier, selectKit) => {
|
||
|
return selectKit.modifyComponentForCollection(collectionIdentifier);
|
||
|
}
|
||
|
);
|