feat: hack db connection modal ctabtns (#20017)

* add flow for dbconnmodal to datasetmodal

* fix bug

* second part

* fix dataset to sql lab

* fix lint

* more lint

* add key value

* fix type

* add new styling

* remove undefined from types
This commit is contained in:
Phillip Kelley-Dotson
2022-07-05 08:56:12 -07:00
committed by GitHub
parent 4137fe03a0
commit 9da7c1f7b8
9 changed files with 96 additions and 10 deletions

View File

@@ -31,6 +31,7 @@ export enum LocalStorageKeys {
* and therefore should be done in a major release.
*/
filter_box_transition_snoozed_at = 'filter_box_transition_snoozed_at',
db = 'db',
chart_split_sizes = 'chart_split_sizes',
controls_width = 'controls_width',
datasource_width = 'datasource_width',
@@ -54,6 +55,7 @@ export enum LocalStorageKeys {
export type LocalStorageValues = {
filter_box_transition_snoozed_at: Record<number, number>;
db: object | null;
chart_split_sizes: [number, number];
controls_width: number;
datasource_width: number;