mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:15:00 +08:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
|
||
|
registerUnbound(
|
||
|
"component-for-row",
|
||
|
(collectionForIdentifier, item, selectKit) => {
|
||
|
return selectKit.modifyComponentForRow(collectionForIdentifier, item);
|
||
|
}
|
||
|
);
|