diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2024-07-25 23:31:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-25 23:31:38 +0100 |
| commit | c32bbcc7edc2cf99da52b1407c90238bc781a804 (patch) | |
| tree | 4a8b307f69fb444f5c8c15a65e6f89170d9d4bbf /ui/src/pages/Runbooks.tsx | |
| parent | feat(gui): allow interacting with the embedded terminal (#2312) (diff) | |
| download | atuin-c32bbcc7edc2cf99da52b1407c90238bc781a804.zip | |
feat(gui): directory block, re-org of some code (#2314)
Diffstat (limited to 'ui/src/pages/Runbooks.tsx')
| -rw-r--r-- | ui/src/pages/Runbooks.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ui/src/pages/Runbooks.tsx b/ui/src/pages/Runbooks.tsx index 6b517553..d0efbc1c 100644 --- a/ui/src/pages/Runbooks.tsx +++ b/ui/src/pages/Runbooks.tsx @@ -1,5 +1,8 @@ import Editor from "@/components/runbooks/editor/Editor"; import List from "@/components/runbooks/List"; + +import { Checkbox } from "@nextui-org/react"; + import { useStore } from "@/state/store"; export default function Runbooks() { @@ -8,7 +11,11 @@ export default function Runbooks() { return ( <div className="flex w-full !max-w-full flex-row "> <List /> - {currentRunbook && <Editor />} + {currentRunbook && ( + <div className="flex w-full"> + <Editor /> + </div> + )} {!currentRunbook && ( <div className="flex align-middle justify-center flex-col h-screen w-full"> |
