diff --git a/src/components/DrawerMenu.tsx b/src/components/DrawerMenu.tsx index b1a0f74..47d7287 100644 --- a/src/components/DrawerMenu.tsx +++ b/src/components/DrawerMenu.tsx @@ -168,7 +168,7 @@ function DimensionItem({dimension, locale, activeItems, activeCount}) { return (
{getIconForDimensionType(dimension.dimensionType)} @@ -649,7 +649,6 @@ function FilterItem({ // Function to get the appropriate icon for each dimension type const getIconForDimensionType = dimensionType => { - console.log(dimensionType, "dt"); switch (dimensionType) { case "geo": return ; diff --git a/src/components/Results.tsx b/src/components/Results.tsx index 90fdbfa..0ab7e1a 100644 --- a/src/components/Results.tsx +++ b/src/components/Results.tsx @@ -84,17 +84,17 @@ export const useStyles = createStyles(theme => ({ "&:hover": { backgroundColor: theme.colorScheme === "dark" - ? theme.fn.rgba(theme.colors.blue[9], 0.45) - : theme.fn.rgba(theme.colors.blue[4], 0.45) + ? theme.fn.rgba(theme.colors[theme.primaryColor][9], 0.45) + : theme.fn.rgba(theme.colors[theme.primaryColor][4], 0.45) } }, linkActive: { backgroundColor: theme.colorScheme === "dark" - ? theme.fn.rgba(theme.colors.blue[9], 0.45) - : theme.colors.blue[4], - color: theme.colorScheme === "dark" ? theme.colors.blue[1] : theme.white, + ? theme.fn.rgba(theme.colors[theme.primaryColor][9], 0.45) + : theme.colors[theme.primaryColor][4], + color: theme.colorScheme === "dark" ? theme.colors[theme.primaryColor][1] : theme.white, fontWeight: 500 } })); diff --git a/src/state/thunks.ts b/src/state/thunks.ts index 9eda9c6..83eebc2 100644 --- a/src/state/thunks.ts +++ b/src/state/thunks.ts @@ -48,7 +48,6 @@ export function willDownloadQuery(format: Format): ExplorerThunk { const filename = `${cube.name}_${new Date().toISOString()}`; const queryParams = {...params, pagiLimit: 0, pagiOffset: 0}; - console.log({format}) const query = applyQueryParams(cube.query, queryParams, {previewLimit}).setFormat(format); const dataURL = query.toString("logiclayer").replace(olapClient.datasource.serverUrl, "");