Move common logic into systems view again

- adds backend log if subcluster for node not configured
This commit is contained in:
Christoph Kluge
2024-10-14 11:55:59 +02:00
parent 2cbe8e9517
commit 2f6e5a7648
9 changed files with 350 additions and 445 deletions

View File

@@ -1,5 +1,5 @@
<!--
@component Displays job metaData, serves links to detail pages
@component Displays node info, serves link to signle node page
Properties:
- `job Object`: The Job Object (GraphQL.Job)

View File

@@ -1,5 +1,5 @@
<!--
@component Data row for a single job displaying metric plots
@component Data row for a single node displaying metric plots
Properties:
- `job Object`: The job object (GraphQL.Job)
@@ -15,9 +15,9 @@
import { getContext } from "svelte";
import { Card, Spinner } from "@sveltestrap/sveltestrap";
import { maxScope, checkMetricDisabled } from "../../generic/utils.js";
import JobInfo from "./NodeInfo.svelte";
import MetricPlot from "../../generic/plots/MetricPlot.svelte";
import JobFootprint from "../../generic/helper/JobFootprint.svelte";
import NodeInfo from "./NodeInfo.svelte";
export let job;
export let metrics;