Skip to content

Commit f92b64b

Browse files
committed
Fix build error
1 parent a3fc7b8 commit f92b64b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

extensions/mssql/src/webviews/pages/TableExplorer/TableExplorerFilterBar.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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]}

0 commit comments

Comments
 (0)