fix(connection-dialog): show Spark database icon
This commit is contained in:
parent
8a6640e184
commit
8de5becdef
|
|
@ -653,7 +653,7 @@ const driverProfiles: Record<
|
|||
trino: { type: "trino", port: 8080, user: "", label: "Trino", icon: "trino" },
|
||||
prestosql: { type: "prestosql", port: 8080, user: "", label: "PrestoSQL", icon: "presto" },
|
||||
hive: { type: "hive", port: 10000, user: "", label: "Apache Hive", icon: "hive" },
|
||||
spark: { type: "spark", port: 10015, user: "", label: "Apache Spark", icon: "spark-logo.png" },
|
||||
spark: { type: "spark", port: 10015, user: "", label: "Apache Spark", icon: "spark" },
|
||||
db2: { type: "db2", port: 50000, user: "db2inst1", label: "IBM DB2", icon: "db2" },
|
||||
informix: { type: "informix", port: 9088, user: "informix", label: "Informix", icon: "informix" },
|
||||
dremio: { type: "jdbc", port: 31010, user: "", label: "Dremio", icon: "dremio" },
|
||||
|
|
@ -1699,7 +1699,7 @@ const iconTypeMap: Record<string, string> = {
|
|||
trino: "trino",
|
||||
prestosql: "prestosql",
|
||||
hive: "hive",
|
||||
spark: "spark-logo.png",
|
||||
spark: "spark",
|
||||
db2: "db2",
|
||||
informix: "informix",
|
||||
dremio: "dremio",
|
||||
|
|
|
|||
Loading…
Reference in New Issue