Skip to content

Commit ae5e058

Browse files
committed
2 parents 92a7beb + 26d905a commit ae5e058

File tree

3 files changed

+7
-19
lines changed

3 files changed

+7
-19
lines changed

dqops/src/main/frontend/src/components/Dashboard/DatabaseConnection/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ const DatabaseConnection = ({
198198
className={clsx(
199199
'mb-3 w-20 text-blue-500',
200200
nameOfDatabase === 'Spark' && 'w-35',
201-
nameOfDatabase === 'Trino' && 'max-w-11'
201+
nameOfDatabase === 'Trino' && 'max-w-11',
202+
nameOfDatabase.includes('Cloud SQL for ') && 'w-18'
202203
)}
203204
/>
204205
);

dqops/src/main/frontend/src/components/Dashboard/SelectDatabase/index.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ const SelectDatabase = ({ onSelect }: ISelectDatabaseProps) => {
5858
className={clsx(
5959
'mb-3 text-blue-500',
6060
option.name === 'Spark' && 'w-30',
61+
(option.iconName === 'cloudsqlformysql' ||
62+
option.iconName === 'cloudsqlforpostgresql' ||
63+
option.iconName === 'cloudsqlforsqlserver') &&
64+
'w-18',
6165
option.iconName === 'perconaserverformysql' && 'w-20'
6266
)}
6367
/>
Loading

0 commit comments

Comments
 (0)