mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 20:46:01 +00:00
fixed loading tables with maby FKs
This commit is contained in:
@@ -18,6 +18,7 @@ export interface GridConfig extends GridConfigColumns {
|
||||
|
||||
export interface GridCache {
|
||||
tables: { [uniqueName: string]: TableInfo };
|
||||
loadingTables: { schemaName: string; pureName: string }[];
|
||||
refreshTime: number;
|
||||
}
|
||||
|
||||
@@ -35,6 +36,7 @@ export function createGridConfig(): GridConfig {
|
||||
export function createGridCache(): GridCache {
|
||||
return {
|
||||
tables: {},
|
||||
loadingTables: [],
|
||||
refreshTime: new Date().getTime(),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user