From adf4d0a0ed6ab308c1789931a0aa633352e84676 Mon Sep 17 00:00:00 2001 From: sdjdd Date: Mon, 1 Apr 2024 16:18:49 +0800 Subject: [PATCH] feat(next/web): allow customer service download exported tickets --- next/web/src/App/Admin/Settings/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next/web/src/App/Admin/Settings/index.tsx b/next/web/src/App/Admin/Settings/index.tsx index f4a268b2a..fdfc026e0 100644 --- a/next/web/src/App/Admin/Settings/index.tsx +++ b/next/web/src/App/Admin/Settings/index.tsx @@ -45,6 +45,9 @@ const SettingRoutes = () => ( } /> + + } /> + ); @@ -198,6 +201,7 @@ const routeGroups: MenuItem[] = [ { name: '工单', key: 'ticket', + adminOnly: false, children: [ { name: '分类', @@ -238,6 +242,7 @@ const routeGroups: MenuItem[] = [ { name: '导出记录', path: 'export-ticket/tasks', + adminOnly: false, }, ], },