discourse/app/assets/javascripts/admin/addon/templates/config-customize-components.gjs
Osama Sayegh ad0966afa9
FEATURE: Introduce new components listing page (#32164)
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>
2025-04-08 17:58:29 +03:00

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>
);