diff --git a/frontend/src/components/notebook/NotebookDescriptionBox.tsx b/frontend/src/components/notebook/NotebookDescriptionBox.tsx index 962396f..68ab331 100644 --- a/frontend/src/components/notebook/NotebookDescriptionBox.tsx +++ b/frontend/src/components/notebook/NotebookDescriptionBox.tsx @@ -42,12 +42,16 @@ export function NotebookDescriptionBox(): JSX.Element | null {

A {notebook.value.is_running ? "running" : "stopped"} notebook using {notebook.value.container_image}{locked_text}.

-
- - - - -
+ { + notebook.value.is_running ? ( +
+ + + + +
+ ) : null + } ) }