Commit 32538ec 1 parent d6a463f commit 32538ec Copy full SHA for 32538ec
File tree 3 files changed +7
-19
lines changed
dqops/src/main/frontend/src/components
3 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,8 @@ const DatabaseConnection = ({
198
198
className = { clsx (
199
199
'mb-3 w-20 text-blue-500' ,
200
200
nameOfDatabase === 'Spark' && 'w-35' ,
201
- nameOfDatabase === 'Trino' && 'max-w-11'
201
+ nameOfDatabase === 'Trino' && 'max-w-11' ,
202
+ nameOfDatabase . includes ( 'Cloud SQL for ' ) && 'w-18'
202
203
) }
203
204
/>
204
205
) ;
Original file line number Diff line number Diff line change @@ -58,6 +58,10 @@ const SelectDatabase = ({ onSelect }: ISelectDatabaseProps) => {
58
58
className = { clsx (
59
59
'mb-3 text-blue-500' ,
60
60
option . name === 'Spark' && 'w-30' ,
61
+ ( option . iconName === 'cloudsqlformysql' ||
62
+ option . iconName === 'cloudsqlforpostgresql' ||
63
+ option . iconName === 'cloudsqlforsqlserver' ) &&
64
+ 'w-18' ,
61
65
option . iconName === 'perconaserverformysql' && 'w-20'
62
66
) }
63
67
/>
You can’t perform that action at this time.
0 commit comments