fix: add Ошибки tab to admin nav + already fixed client→supabase in ErrorLogPanel

This commit is contained in:
root 2026-05-27 15:33:06 +00:00
parent 7dfdd91798
commit 2ee437e83e
1 changed files with 2 additions and 1 deletions

View File

@ -96,6 +96,7 @@ export const DashboardPage = () => {
{ key: "orders", label: "Группы", description: "Реестр групп доставки.", badge: String(allOrderGroups.length || orderGroups.length || 0) }, { key: "orders", label: "Группы", description: "Реестр групп доставки.", badge: String(allOrderGroups.length || orderGroups.length || 0) },
{ key: "users", label: "Пользователи", description: "Управление пользователями.", badge: null }, { key: "users", label: "Пользователи", description: "Управление пользователями.", badge: null },
{ key: "stop_words", label: "Стоп-слова", description: "Слова, исключаемые из карточки.", badge: null }, { key: "stop_words", label: "Стоп-слова", description: "Слова, исключаемые из карточки.", badge: null },
{ key: "errors", label: "Ошибки", description: "Журнал ошибок приложения.", badge: null },
{ key: "action_log", label: "Журнал", description: "Журнал действий сотрудников.", badge: null }, { key: "action_log", label: "Журнал", description: "Журнал действий сотрудников.", badge: null },
] ]
: userRole === "logistician" : userRole === "logistician"
@ -182,4 +183,4 @@ export const DashboardPage = () => {
{renderActiveSection()} {renderActiveSection()}
</AppShell> </AppShell>
); );
}; };