Skip to content
Snippets Groups Projects

fix: avoid breaking frontend due to empty schema result

Merged Leonardo Christino requested to merge fix/schema_empty into main
2 files
+ 3
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -9,7 +9,7 @@ export enum DatabaseType {
}
export const databaseNameMapping: string[] = ['arangodb', 'neo4j'];
export const databaseProtocolMapping: string[] = ['neo4j://', 'neo4j+s://'];
export const databaseProtocolMapping: string[] = ['neo4j://', 'neo4j+s://', 'bolt://', 'bolt+s://'];
export type AddDatabaseRequest = {
name: string;
Loading