diff --git a/web/frontend/src/Node.root.svelte b/web/frontend/src/Node.root.svelte
index c8b0d78..4ea5491 100644
--- a/web/frontend/src/Node.root.svelte
+++ b/web/frontend/src/Node.root.svelte
@@ -13,6 +13,7 @@
import {
Row,
Col,
+ Input,
InputGroup,
InputGroupText,
Icon,
@@ -43,7 +44,7 @@
if (from == null || to == null) {
to = new Date(Date.now());
from = new Date(to.getTime());
- from.setMinutes(from.getMinutes() - 30);
+ from.setHours(from.getHours() - 12);
}
const initialized = getContext("initialized")
@@ -135,26 +136,38 @@
{:else if $initq.fetching}
{:else}
+
- {hostname} ({cluster})
+ Selected Node
+
+
+
+
+
+
{#if $nodeJobsData.fetching}
{:else if $nodeJobsData.data}
- Currently running jobs on this node: {$nodeJobsData.data.jobs.count}
- [
- View in Job List ]
+
+
+ Activity
+
+
+ Show List
+
+
{:else}
+
No currently running jobs.
+
{/if}
+
{
@@ -164,9 +177,6 @@
}}
/>
-
-
-
{/if}
diff --git a/web/frontend/src/Systems.root.svelte b/web/frontend/src/Systems.root.svelte
index 0d5e70e..8ff1aef 100644
--- a/web/frontend/src/Systems.root.svelte
+++ b/web/frontend/src/Systems.root.svelte
@@ -42,7 +42,7 @@
if (from == null || to == null) {
to = new Date(Date.now());
from = new Date(to.getTime());
- from.setMinutes(from.getMinutes() - 30);
+ from.setHours(from.getHours() - 12);
}
const initialized = getContext("initialized");
@@ -117,18 +117,23 @@
{:else if $initq.fetching}
{:else}
+
- {
- const diff = Date.now() - to;
- from = new Date(from.getTime() + diff);
- to = new Date(to.getTime() + diff);
- }}
- />
+
+
+ Find Node
+
+
+