Run specific test suites in serial matter and restrict file uploads

This commit is contained in:
thiloho
2024-09-01 16:51:21 +02:00
parent 8deefc41d1
commit 49c5b2a541
5 changed files with 109 additions and 10 deletions

View File

@@ -66,9 +66,19 @@
<label>
Filter:
<select name="article_filter">
<option value="all">Show all</option>
<option value="creations">Created by you</option>
<option value="shared">Created by others</option>
<option value="all" selected={"all" === $page.url.searchParams.get("article_filter")}
>Show all</option
>
<option
value="creations"
selected={"creations" === $page.url.searchParams.get("article_filter")}
>Created by you</option
>
<option
value="shared"
selected={"shared" === $page.url.searchParams.get("article_filter")}
>Created by others</option
>
</select>
</label>
<button type="submit">Submit</button>