Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE committed Dec 12, 2024
1 parent b8b73f8 commit a18dedd
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions frontend/src/scenes/data-warehouse/editor/OutputPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function OutputPane(): JSX.Element {
const { setActiveTab } = useActions(outputPaneLogic)
const { variablesForInsight } = useValues(variablesLogic)

const { editingView, sourceQuery, exportContext, isValidView, editorKey, error } = useValues(multitabEditorLogic)
const { editingView, sourceQuery, exportContext, isValidView, error, editorKey } = useValues(multitabEditorLogic)
const { saveAsInsight, saveAsView, setSourceQuery, runQuery } = useActions(multitabEditorLogic)
const { isDarkModeOn } = useValues(themeLogic)
const { response, responseLoading, responseError } = useValues(dataNodeLogic)
Expand Down Expand Up @@ -158,10 +158,6 @@ export function OutputPane(): JSX.Element {
key: OutputTab.Visualization,
label: 'Visualization',
},
{
key: OutputTab.Info,
label: 'Info',
},
]}
/>
<div className="flex gap-4">
Expand Down Expand Up @@ -223,8 +219,9 @@ export function OutputPane(): JSX.Element {
</LemonButton>
</div>
</div>

<Content />
<div className="flex flex-1 relative bg-dark justify-center items-center">
<Content />
</div>
</div>
)
}
Expand Down

0 comments on commit a18dedd

Please sign in to comment.