mirror of
https://github.com/chartdb/chartdb.git
synced 2026-01-10 05:40:20 -06:00
add default val to includeDependencies in getDiagram (#278)
This commit is contained in:
@@ -235,7 +235,11 @@ export const StorageProvider: React.FC<React.PropsWithChildren> = ({
|
||||
includeTables?: boolean;
|
||||
includeRelationships?: boolean;
|
||||
includeDependencies?: boolean;
|
||||
} = { includeRelationships: false, includeTables: false }
|
||||
} = {
|
||||
includeRelationships: false,
|
||||
includeTables: false,
|
||||
includeDependencies: false,
|
||||
}
|
||||
): Promise<Diagram | undefined> => {
|
||||
const diagram = await db.diagrams.get(id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user