File tree Expand file tree Collapse file tree
extensions/mssql/src/webviews/pages/TableExplorer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,13 +69,13 @@ const useStyles = makeStyles({
6969 alignItems : "center" ,
7070 ...shorthands . gap ( "8px" ) ,
7171 } ,
72- conjunction : {
72+ conjunctionLabel : {
7373 width : "40px" ,
7474 fontSize : "12px" ,
7575 color : tokens . colorNeutralForeground2 ,
7676 textTransform : "lowercase" ,
7777 } ,
78- conjunction : {
78+ conjunctionDropdown : {
7979 minWidth : "60px" ,
8080 } ,
8181 columnDropdown : {
@@ -383,10 +383,12 @@ export const TableExplorerFilterBar: React.FC<TableExplorerFilterBarProps> = ({
383383 { rows . map ( ( row , i ) => (
384384 < div className = { classes . row } key = { row . id } >
385385 { i === 0 ? (
386- < span className = { classes . conjunction } > { loc . tableExplorer . filterWhere } </ span >
386+ < span className = { classes . conjunctionLabel } >
387+ { loc . tableExplorer . filterWhere }
388+ </ span >
387389 ) : (
388390 < Dropdown
389- className = { classes . conjunction }
391+ className = { classes . conjunctionDropdown }
390392 size = "small"
391393 value = { row . conjunction . toLowerCase ( ) }
392394 selectedOptions = { [ row . conjunction ] }
You can’t perform that action at this time.
0 commit comments