diff --git a/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light.png b/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light.png index 30d180884665b..ebbdd65ee5643 100644 Binary files a/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light.png and b/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light.png differ diff --git a/frontend/src/lib/lemon-ui/LemonTable/LemonTable.tsx b/frontend/src/lib/lemon-ui/LemonTable/LemonTable.tsx index cf52874e4c468..4f9256e1569c9 100644 --- a/frontend/src/lib/lemon-ui/LemonTable/LemonTable.tsx +++ b/frontend/src/lib/lemon-ui/LemonTable/LemonTable.tsx @@ -90,6 +90,8 @@ export interface LemonTableProps> { firstColumnSticky?: boolean // Max width for the column headers maxHeaderWidth?: string + /** Whether to hide the scrollbar. */ + hideScrollbar?: boolean } export function LemonTable>({ @@ -125,6 +127,7 @@ export function LemonTable>({ footer, firstColumnSticky, maxHeaderWidth, + hideScrollbar, }: LemonTableProps): JSX.Element { /** Search param that will be used for storing and syncing sorting */ const currentSortingParam = id ? `${id}_order` : 'order' @@ -234,7 +237,11 @@ export function LemonTable>({ style={style} data-attr={dataAttr} > - +
diff --git a/frontend/src/scenes/data-warehouse/settings/source/Syncs.tsx b/frontend/src/scenes/data-warehouse/settings/source/Syncs.tsx index c283e32c7b54b..dfdf1867aa136 100644 --- a/frontend/src/scenes/data-warehouse/settings/source/Syncs.tsx +++ b/frontend/src/scenes/data-warehouse/settings/source/Syncs.tsx @@ -24,6 +24,7 @@ export const Syncs = ({ id }: SyncsProps): JSX.Element => { return (