mirror of
https://github.com/chartdb/chartdb.git
synced 2025-11-13 02:17:04 +00:00
multi schemas alert
This commit is contained in:
committed by
Guy Ben-Aharon
parent
2f2828bc36
commit
420733be8e
@@ -18,6 +18,10 @@ export interface LayoutContext {
|
||||
isSidePanelShowed: boolean;
|
||||
hideSidePanel: () => void;
|
||||
showSidePanel: () => void;
|
||||
|
||||
isSelectSchemaOpen: boolean;
|
||||
openSelectSchema: () => void;
|
||||
closeSelectSchema: () => void;
|
||||
}
|
||||
|
||||
export const layoutContext = createContext<LayoutContext>({
|
||||
@@ -35,4 +39,8 @@ export const layoutContext = createContext<LayoutContext>({
|
||||
isSidePanelShowed: false,
|
||||
hideSidePanel: emptyFn,
|
||||
showSidePanel: emptyFn,
|
||||
|
||||
isSelectSchemaOpen: false,
|
||||
openSelectSchema: emptyFn,
|
||||
closeSelectSchema: emptyFn,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user