Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrczarnas committed Oct 15, 2024
2 parents 92a7beb + 26d905a commit ae5e058
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ const DatabaseConnection = ({
className={clsx(
'mb-3 w-20 text-blue-500',
nameOfDatabase === 'Spark' && 'w-35',
nameOfDatabase === 'Trino' && 'max-w-11'
nameOfDatabase === 'Trino' && 'max-w-11',
nameOfDatabase.includes('Cloud SQL for ') && 'w-18'
)}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ const SelectDatabase = ({ onSelect }: ISelectDatabaseProps) => {
className={clsx(
'mb-3 text-blue-500',
option.name === 'Spark' && 'w-30',
(option.iconName === 'cloudsqlformysql' ||
option.iconName === 'cloudsqlforpostgresql' ||
option.iconName === 'cloudsqlforsqlserver') &&
'w-18',
option.iconName === 'perconaserverformysql' && 'w-20'
)}
/>
Expand Down
19 changes: 1 addition & 18 deletions dqops/src/main/frontend/src/components/SvgIcon/svg/cloud-sql.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ae5e058

Please sign in to comment.