fix: errors in import paths

This commit is contained in:
Christoph Kluge 2024-08-01 16:11:23 +02:00
parent 3ca1127685
commit c80d3a6958
3 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@
convert2uplot,
binsFromFootprint,
} from "./generic/utils.js";
import PlotSelection from "./analysis/PlotSelection.svelte.js";
import PlotSelection from "./analysis/PlotSelection.svelte";
import Filters from "./generic/Filters.svelte";
import PlotTable from "./generic/PlotTable.svelte";
import Histogram from "./generic/plots/Histogram.svelte";

View File

@ -34,9 +34,9 @@
checkMetricDisabled,
transformDataForRoofline,
} from "./generic/utils.js";
import Metric from "./job/Metric.svelte.js";
import TagManagement from "./job/TagManagement.svelte.js";
import StatsTable from "./job/StatsTable.svelte.js";
import Metric from "./job/Metric.svelte";
import TagManagement from "./job/TagManagement.svelte";
import StatsTable from "./job/StatsTable.svelte";
import JobFootprint from "./generic/helper/JobFootprint.svelte";
import PlotTable from "./generic/PlotTable.svelte";
import Polar from "./generic/plots/Polar.svelte";
@ -75,7 +75,7 @@
duration, numNodes, numHWThreads, numAcc,
SMT, exclusive, partition, subCluster, arrayJobId,
monitoringStatus, state, walltime,
tags { id, type, name },
tags { id, type, name, scope },
resources { hostname, hwthreads, accelerators },
metaData,
userData { name, email },

View File

@ -17,7 +17,7 @@
} from "@sveltestrap/sveltestrap";
import { maxScope } from "../generic/utils.js";
import StatsTableEntry from "./StatsTableEntry.svelte";
import MetricSelection from "../generic/Select/MetricSelection.svelte";
import MetricSelection from "../generic/select/MetricSelection.svelte";
export let job;
export let jobMetrics;