diff --git a/frontend/app/components/Funnels/FunnelWidget/FunnelTable.tsx b/frontend/app/components/Funnels/FunnelWidget/FunnelTable.tsx
index 43df32334..98b9264e6 100644
--- a/frontend/app/components/Funnels/FunnelWidget/FunnelTable.tsx
+++ b/frontend/app/components/Funnels/FunnelWidget/FunnelTable.tsx
@@ -1,9 +1,8 @@
import React from 'react';
-import { Table, Tooltip } from 'antd';
+import { Table, Tooltip, Dropdown } from 'antd';
import type { TableProps } from 'antd';
import Widget from 'App/mstore/types/widget';
import Funnel from 'App/mstore/types/funnel';
-import { ItemMenu } from 'UI';
import { EllipsisVertical } from 'lucide-react';
import { exportAntCsv } from '../../../utils';
import { useTranslation } from 'react-i18next';
@@ -111,19 +110,20 @@ export function TableExporter({
const { t } = useTranslation();
const onClick = () => exportAntCsv(tableColumns, tableData, filename);
return (
-
-
-
-
-
- }
- />
-
-
+
);
}
diff --git a/frontend/app/initialize.tsx b/frontend/app/initialize.tsx
index d569a2f34..21facffc7 100644
--- a/frontend/app/initialize.tsx
+++ b/frontend/app/initialize.tsx
@@ -98,8 +98,9 @@ const ThemedApp: React.FC = () => {
colorBorderSecondary: cssVar('gray-light'),
headerBg: cssVar('gray-lightest'),
rowHoverBg: cssVar('gray-lightest'),
- headerSortHoverBg: cssVar('gray-lighter'),
- headerSortActiveBg: cssVar('gray-lighter')
+ headerSortHoverBg: cssVar('gray-light'),
+ headerSortActiveBg: cssVar('gray-light'),
+ fixedHeaderSortActiveBg: cssVar('gray-light'),
},
Modal: {
colorBgElevated: cssVar('white'),
@@ -120,8 +121,8 @@ const ThemedApp: React.FC = () => {
},
Tag: {
defaultBg: cssVar('gray-lightest'),
- defaultColor: cssVar('gray-darkest')
- }
+ defaultColor: cssVar('gray-darkest'),
+ },
},
token: {
colorPrimary: cssVar('main'),
@@ -143,7 +144,7 @@ const ThemedApp: React.FC = () => {
fontSize: 14,
fontFamily: "'Roboto', 'ArialMT', 'Arial'",
fontWeightStrong: 400,
- colorSplit: cssVar('gray-light')
+ colorSplit: cssVar('gray-light'),
},
};