Skip to content

Commit

Permalink
prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GITHUB_USERNAME authored and GITHUB_USERNAME committed Jan 16, 2023
1 parent 618161f commit 6b9b428
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion superset-frontend/src/components/Select/CustomTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const customTagRender = (props: CustomTagProps) => {

if (value !== SELECT_ALL_VALUE) {
return (
<Tag onMouseDown={onPreventMouseDown} {...props as object}>
<Tag onMouseDown={onPreventMouseDown} {...(props as object)}>
{label}
</Tag>
);
Expand Down
3 changes: 1 addition & 2 deletions superset-frontend/src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,7 @@ const Select = forwardRef(
return selectAllMode
? `+ ${num_selected - 1} ...`
: `+ ${num_selected} ...`;
}

};

return (
<StyledContainer headerPosition={headerPosition}>
Expand Down

0 comments on commit 6b9b428

Please sign in to comment.