diff --git a/packages/grafana-ui/src/components/Table/HeaderRow.tsx b/packages/grafana-ui/src/components/Table/HeaderRow.tsx index 434852eec4c..a935b961249 100644 --- a/packages/grafana-ui/src/components/Table/HeaderRow.tsx +++ b/packages/grafana-ui/src/components/Table/HeaderRow.tsx @@ -55,11 +55,7 @@ function renderHeaderCell(column: any, tableStyles: TableStyles, field?: Field,
{column.canSort && ( <> -
+
+ {column.canFilter && } )} diff --git a/packages/grafana-ui/src/components/Table/styles.ts b/packages/grafana-ui/src/components/Table/styles.ts index 2ac5c0c7ef5..76adbf40729 100644 --- a/packages/grafana-ui/src/components/Table/styles.ts +++ b/packages/grafana-ui/src/components/Table/styles.ts @@ -92,6 +92,9 @@ export const getTableStyles = (theme: GrafanaTheme2) => { } `, headerCellLabel: css` + border: none; + padding: 0; + background: inherit; cursor: pointer; white-space: nowrap; overflow: hidden;