|
|
@ -99,7 +99,7 @@ export function connectionCanEdit(connection: Connection) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export function getTextByDatabaseType(databaseType: string) { |
|
|
|
export function getTextByDatabaseType(databaseType: string) { |
|
|
|
const database = DATA_BASE_TYPES.find(item => item.databaseType === databaseType); |
|
|
|
const database = getAllDatabaseTypes().find(item => item.databaseType === databaseType); |
|
|
|
|
|
|
|
|
|
|
|
return database ? database.text : ''; |
|
|
|
return database ? database.text : ''; |
|
|
|
} |
|
|
|
} |
|
|
|