mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 00:24:19 +08:00
Follow-up to https://github.com/discourse/discourse/pull/31887 This commit introduces a new design for the components listing page, which is not linked from anywhere in the UI at the moment, but it can be accessed by heading to the `/admin/config/customize/components` path directly. We'll make this new design available from the sidebar and remove the old page once we've tested and validated the new design internally. Internal topic: t/146007. --------- Co-authored-by: Ella <ella.estigoy@gmail.com>
8 lines
290 B
JavaScript
Vendored
8 lines
290 B
JavaScript
Vendored
import DiscourseRoute from "discourse/routes/discourse";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class AdminConfigThemesAndComponentsComponentsRoute extends DiscourseRoute {
|
|
titleToken() {
|
|
return i18n("admin.config_areas.themes_and_components.components.title");
|
|
}
|
|
}
|