Skip to content

Commit 3c0a9ed

Browse files
authored
feat(import): Include preview rows in the listCSVFields() result COMPASS-6422 (#4003)
* include preview rows in the listCSVFields() result * without the .only
1 parent 78f2845 commit 3c0a9ed

22 files changed

+414
-184
lines changed

packages/compass-components/src/components/combobox/Chip.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export const Chip = React.forwardRef<HTMLSpanElement, ChipProps>(
240240
chipWrapperSizeStyle[size],
241241
{
242242
[disabledChipWrapperStyle[theme]]: disabled,
243-
},
243+
}
244244
)}
245245
onClick={handleChipClick}
246246
onKeyDown={handleKeyDown}
@@ -270,14 +270,14 @@ export const Chip = React.forwardRef<HTMLSpanElement, ChipProps>(
270270
chipButtonSizeStyle[size],
271271
{
272272
[chipButtonDisabledStyle[theme]]: disabled,
273-
},
273+
}
274274
)}
275275
onClick={handleButtonClick}
276276
>
277277
<Icon glyph="X" />
278278
</button>
279279
</span>
280280
);
281-
},
281+
}
282282
);
283283
Chip.displayName = 'Chip';

packages/compass-components/src/components/combobox/Combobox.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export const inputElementTransitionStyles = (isOpen: boolean) => css`
287287
/** Should only be applied to a multiselect */
288288
export const multiselectInputElementStyle = (
289289
size: Size,
290-
inputValue?: string,
290+
inputValue?: string
291291
) => {
292292
const inputLength = inputValue?.length ?? 0;
293293
return css`

0 commit comments

Comments
 (0)