mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 22:36:11 +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>
17 lines
490 B
Text
Vendored
17 lines
490 B
Text
Vendored
import RouteTemplate from "ember-route-template";
|
|
import DBreadcrumbsItem from "discourse/components/d-breadcrumbs-item";
|
|
import { i18n } from "discourse-i18n";
|
|
import Components from "admin/components/admin-config-areas/components";
|
|
|
|
export default RouteTemplate(
|
|
<template>
|
|
<DBreadcrumbsItem
|
|
@path="/admin/config/customize/components"
|
|
@label={{i18n
|
|
"admin.config_areas.themes_and_components.components.title"
|
|
}}
|
|
/>
|
|
|
|
<Components />
|
|
</template>
|
|
);
|