diff --git a/frontend/app/components/DataManagement/Activity/Page.tsx b/frontend/app/components/DataManagement/Activity/Page.tsx index c087da5cf..dbbb65e17 100644 --- a/frontend/app/components/DataManagement/Activity/Page.tsx +++ b/frontend/app/components/DataManagement/Activity/Page.tsx @@ -16,6 +16,7 @@ import { useStore } from 'App/mstore'; import FullPagination from 'Shared/FullPagination'; import AnimatedSVG from 'Shared/AnimatedSVG'; import DndTable from 'Shared/DNDTable'; +import { Code } from 'lucide-react'; const limit = 100; @@ -83,7 +84,8 @@ function ActivityPage() { showSorterTooltip: { target: 'full-header' }, sorter: (a, b) => a.name.localeCompare(b.name), render: (text, row) => ( -
+
+ {row.$_isAutoCapture && [a]} {row.name}
diff --git a/frontend/app/layout/data.ts b/frontend/app/layout/data.ts index 76ab2ce8f..d88551a20 100644 --- a/frontend/app/layout/data.ts +++ b/frontend/app/layout/data.ts @@ -58,6 +58,7 @@ export const enum MENU { USERS = 'data-users', EVENTS = 'data-events', PROPS = 'data-properties', + DATA_MANAGEMENT = 'data-management', } export const categories: Category[] = [ @@ -110,9 +111,11 @@ export const categories: Category[] = [ key: 'data-management', items: [ { label: 'Activity', key: MENU.ACTIVITY, icon: 'square-mouse-pointer' }, - { label: 'Users', key: MENU.USERS, icon: 'square-mouse-pointer' }, - { label: 'Events', key: MENU.EVENTS, icon: 'square-mouse-pointer' }, - { label: 'Properties', key: MENU.PROPS, icon: 'square-mouse-pointer' }, + { label: 'Data Management', key: MENU.DATA_MANAGEMENT, icon: 'memory', children: [ + { label: 'Users', key: MENU.USERS, icon: 'square-mouse-pointer' }, + { label: 'Events', key: MENU.EVENTS, icon: 'square-mouse-pointer' }, + { label: 'Properties', key: MENU.PROPS, icon: 'square-mouse-pointer' }, + ]} ], }, {