make things scrollable.

This commit is contained in:
Olivier Gagnon
2021-09-11 12:24:09 -04:00
parent 1edcbe88ee
commit dd27158cf0
19 changed files with 35 additions and 36 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ export function ActiveScriptsRoot(props: IProps): React.ReactElement {
}, []);
return (
<div id="active-scripts-container">
<>
<p>
This page displays a list of all of your scripts that are currently running across every machine. It also
provides information about each script's production. The scripts are categorized by the hostname of the servers
@@ -37,6 +37,6 @@ export function ActiveScriptsRoot(props: IProps): React.ReactElement {
<ScriptProduction {...props} />
<ServerAccordions {...props} />
</div>
</>
);
}