diff --git a/frontend/__snapshots__/exporter-exporter--dashboard--light.png b/frontend/__snapshots__/exporter-exporter--dashboard--light.png index ac90639ab4b75..61f6b619057b7 100644 Binary files a/frontend/__snapshots__/exporter-exporter--dashboard--light.png and b/frontend/__snapshots__/exporter-exporter--dashboard--light.png differ diff --git a/frontend/src/lib/lemon-ui/LemonTable/LemonTable.scss b/frontend/src/lib/lemon-ui/LemonTable/LemonTable.scss index 5419d9f12b5ab..2bf5449f0b4aa 100644 --- a/frontend/src/lib/lemon-ui/LemonTable/LemonTable.scss +++ b/frontend/src/lib/lemon-ui/LemonTable/LemonTable.scss @@ -18,6 +18,12 @@ --lemon-table-background-color: var(--bg-light); } + .WebAnalyticsDashboard &, + .WebAnalyticsModal & { + // Special override for scenes where the surroundings provide a border + border: none; + } + .posthog-3000 & { --row-base-height: auto; diff --git a/frontend/src/queries/schema.json b/frontend/src/queries/schema.json index 61209cba2a8b7..4c14f1fd1c36d 100644 --- a/frontend/src/queries/schema.json +++ b/frontend/src/queries/schema.json @@ -5073,6 +5073,9 @@ "dateRange": { "$ref": "#/definitions/DateRange" }, + "doPathCleaning": { + "type": "boolean" + }, "includeBounceRate": { "type": "boolean" }, diff --git a/frontend/src/queries/schema.ts b/frontend/src/queries/schema.ts index 0e1532814c675..57f0e90f1a9db 100644 --- a/frontend/src/queries/schema.ts +++ b/frontend/src/queries/schema.ts @@ -1017,6 +1017,7 @@ export interface WebStatsTableQuery extends WebAnalyticsQueryBase { response?: WebStatsTableQueryResponse includeScrollDepth?: boolean // automatically sets includeBounceRate to true includeBounceRate?: boolean + doPathCleaning?: boolean /** @asType integer */ limit?: number } diff --git a/frontend/src/scenes/web-analytics/WebAnalyticsModal.tsx b/frontend/src/scenes/web-analytics/WebAnalyticsModal.tsx index 438486433e5c7..422f38acbefd0 100644 --- a/frontend/src/scenes/web-analytics/WebAnalyticsModal.tsx +++ b/frontend/src/scenes/web-analytics/WebAnalyticsModal.tsx @@ -30,7 +30,7 @@ export const WebAnalyticsModal = (): JSX.Element | null => { fullScreen={false} closable={true} > -