mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:30:35 +08:00
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
|
||
|
registerUnbound(
|
||
|
"component-for-collection",
|
||
|
(collectionIdentifier, selectKit) => {
|
||
|
return selectKit.modifyComponentForCollection(collectionIdentifier);
|
||
|
}
|
||
|
);
|