File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
querybook/webapp/components/DataTableViewMini Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ export const ColumnIcon: React.FunctionComponent<IColumnIconProps> = ({
22
22
} ;
23
23
if ( tooltip ) {
24
24
spanProps [ 'aria-label' ] = tooltip ;
25
- spanProps [ 'data-balloon-pos' ] = 'up ' ;
25
+ spanProps [ 'data-balloon-pos' ] = 'right ' ;
26
26
}
27
27
28
28
return (
29
29
< span { ...spanProps } >
30
- < Icon name = { name } size = { 16 } fill = { fill } />
30
+ < Icon name = { name } size = { 14 } fill = { fill } />
31
31
</ span >
32
32
) ;
33
33
} ;
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ import { DataTableTags } from 'components/DataTableTags/DataTableTags';
6
6
import { useDataTable } from 'hooks/redux/useDataTable' ;
7
7
import { generateFormattedDate } from 'lib/utils/datetime' ;
8
8
import { getHumanReadableByteSize } from 'lib/utils/number' ;
9
+ import { AllLucideIconNames } from 'ui/Icon/LucideIcons' ;
9
10
import { Loader } from 'ui/Loader/Loader' ;
10
11
11
- import { PanelSection , SubPanelSection } from './PanelSection' ;
12
- import { AllLucideIconNames } from 'ui/Icon/LucideIcons' ;
13
12
import { ColumnIcon } from './ColumnIcon' ;
13
+ import { PanelSection , SubPanelSection } from './PanelSection' ;
14
14
15
15
interface ITablePanelViewProps {
16
16
tableId : number ;
@@ -120,6 +120,7 @@ const StyledColumnRow = styled.div<IStyledColumnRowProps>`
120
120
margin-bottom: 4px;
121
121
display: flex;
122
122
flex-direction: row;
123
+ align-items: center;
123
124
124
125
.column-row-name {
125
126
user-select: none;
@@ -170,7 +171,7 @@ const ColumnRow: React.FunctionComponent<{
170
171
{ icon && (
171
172
< ColumnIcon
172
173
name = { icon }
173
- tooltip = { 'Partitioned Column ' }
174
+ tooltip = { 'Partition key ' }
174
175
fill = { false }
175
176
/>
176
177
) }
You can’t perform that action at this time.
0 commit comments