diff --git a/superset-frontend/src/components/TableSelector/index.tsx b/superset-frontend/src/components/TableSelector/index.tsx index 4ac52b80f0..94c53cdcd5 100644 --- a/superset-frontend/src/components/TableSelector/index.tsx +++ b/superset-frontend/src/components/TableSelector/index.tsx @@ -65,6 +65,10 @@ const TableSelectorWrapper = styled.div` border-bottom: 1px solid ${({ theme }) => theme.colors.secondary.light5}; margin: 15px 0; } + + .table-length { + color: ${({ theme }) => theme.colors.grayscale.light1}; + } `; const TableLabel = styled.span` @@ -382,9 +386,8 @@ const TableSelector: FunctionComponent = ({ {t('See table schema')}{' '} {schema && ( - - {tableOptions.length} in - {schema} + + {tableOptions.length} in {schema} )}