From b3863e5aef719c896d6b853991c873d3aaa7e15a Mon Sep 17 00:00:00 2001 From: maxim Date: Tue, 4 Feb 2025 14:32:18 +0300 Subject: [PATCH] add custom `labels` for sidebar resources --- src/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index c863ba0..c4ed91f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -48,6 +48,7 @@ function App() { edit: '/country/edit/:id', meta: { canDelete: true, + label: 'Страны', icon: , }, }, @@ -58,6 +59,7 @@ function App() { edit: '/city/edit/:id', meta: { canDelete: true, + label: 'Города', icon: , }, }, @@ -68,6 +70,7 @@ function App() { edit: '/carrier/edit/:id', meta: { canDelete: true, + label: 'Перевозчики', icon: , }, }, @@ -79,6 +82,7 @@ function App() { show: '/media/show/:id', meta: { canDelete: true, + label: 'Медиа', icon: , }, },