feat: add jobname filter to joblist textfilter

- allows combination of filters now including jobname
- rename component
This commit is contained in:
Christoph Kluge
2024-05-22 18:22:35 +02:00
parent 061c9f0979
commit 575753038b
2 changed files with 39 additions and 39 deletions

View File

@@ -14,7 +14,7 @@
import Refresher from "./joblist/Refresher.svelte";
import Sorting from "./joblist/SortSelection.svelte";
import MetricSelection from "./MetricSelection.svelte";
import UserOrProject from "./filters/UserOrProject.svelte";
import TextFilter from "./filters/TextFilter.svelte";
const { query: initq } = init();
@@ -86,7 +86,7 @@
</Col>
<Col xs="3" style="margin-left: auto;">
<UserOrProject
<TextFilter
bind:authlevel
bind:roles
on:update={({ detail }) => filterComponent.update(detail)}