Skip to content

Commit 46812d8

Browse files
committed
šŸ› fix(explorer-view): editor and results pane finally into the page
1 parent 9734d80 commit 46812d8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ā€Žsrc/views/ExplorerView.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { EditorPane } from "@components/organisms";
55
import { CONSTANTS } from "@lib";
66
import { ResultsService } from "@services";
77
import { useTableStore } from "@store";
8+
import ResultPane from "../components/organisms/ResultPane/ResultPane.vue";
89
910
export interface IExplorerViewProps {
1011
name: string;
@@ -33,5 +34,8 @@ watch(
3334
</script>
3435

3536
<template>
36-
<editor-pane @run="refresh" />
37+
<div style="display: flex; flex-direction: column; height: 100%">
38+
<editor-pane @run="refresh" />
39+
<result-pane />
40+
</div>
3741
</template>

0 commit comments

Comments
Ā (0)