mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-05-18 14:47:13 +02:00
Merge branch 'dev' into migrate_svelte5
This commit is contained in:
commit
3f1768e467
@ -52,7 +52,7 @@
|
|||||||
let filterComponent; // see why here: https://stackoverflow.com/questions/58287729/how-can-i-export-a-function-from-a-svelte-component-that-changes-a-value-in-the
|
let filterComponent; // see why here: https://stackoverflow.com/questions/58287729/how-can-i-export-a-function-from-a-svelte-component-that-changes-a-value-in-the
|
||||||
let jobList;
|
let jobList;
|
||||||
let jobFilters = [];
|
let jobFilters = [];
|
||||||
let matchedJobs = 0;
|
let matchedListJobs = 0;
|
||||||
let sorting = { field: "startTime", type: "col", order: "DESC" },
|
let sorting = { field: "startTime", type: "col", order: "DESC" },
|
||||||
isSortingOpen = false;
|
isSortingOpen = false;
|
||||||
let metrics = ccconfig.plot_list_selectedMetrics,
|
let metrics = ccconfig.plot_list_selectedMetrics,
|
||||||
@ -144,7 +144,7 @@
|
|||||||
<Col lg="4" class="mb-1 mb-lg-0">
|
<Col lg="4" class="mb-1 mb-lg-0">
|
||||||
<Filters
|
<Filters
|
||||||
{filterPresets}
|
{filterPresets}
|
||||||
{matchedJobs}
|
matchedJobs={matchedListJobs}
|
||||||
startTimeQuickSelect={true}
|
startTimeQuickSelect={true}
|
||||||
bind:this={filterComponent}
|
bind:this={filterComponent}
|
||||||
on:update-filters={({ detail }) => {
|
on:update-filters={({ detail }) => {
|
||||||
@ -336,7 +336,7 @@
|
|||||||
<Col>
|
<Col>
|
||||||
<JobList
|
<JobList
|
||||||
bind:this={jobList}
|
bind:this={jobList}
|
||||||
bind:matchedJobs
|
bind:matchedListJobs
|
||||||
bind:metrics
|
bind:metrics
|
||||||
bind:sorting
|
bind:sorting
|
||||||
bind:showFootprint
|
bind:showFootprint
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
@component jobCompare component; compares jobs according to set filters or job selection
|
@component jobCompare component; compares jobs according to set filters or job selection
|
||||||
|
|
||||||
Properties:
|
Properties:
|
||||||
- `matchedJobs Number?`: Number of matched jobs for selected filters [Default: 0]
|
- `matchedCompareJobs Number?`: Number of matched jobs for selected filters [Default: 0]
|
||||||
- `metrics [String]?`: The currently selected metrics [Default: User-Configured Selection]
|
- `metrics [String]?`: The currently selected metrics [Default: User-Configured Selection]
|
||||||
- `showFootprint Bool`: If to display the jobFootprint component
|
- `showFootprint Bool`: If to display the jobFootprint component
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
Properties:
|
Properties:
|
||||||
- `sorting Object?`: Currently active sorting [Default: {field: "startTime", type: "col", order: "DESC"}]
|
- `sorting Object?`: Currently active sorting [Default: {field: "startTime", type: "col", order: "DESC"}]
|
||||||
- `matchedJobs Number?`: Number of matched jobs for selected filters [Default: 0]
|
- `matchedListJobs Number?`: Number of matched jobs for selected filters [Default: 0]
|
||||||
- `metrics [String]?`: The currently selected metrics [Default: User-Configured Selection]
|
- `metrics [String]?`: The currently selected metrics [Default: User-Configured Selection]
|
||||||
- `showFootprint Bool`: If to display the jobFootprint component
|
- `showFootprint Bool`: If to display the jobFootprint component
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user