mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 07:16:37 +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);
|
|
}
|
|
);
|