Fixed showcased filter not adhered. Improved filter settings UI.

This commit is contained in:
2024-04-03 02:13:41 +02:00
parent 26546bea33
commit 8947288e76
4 changed files with 32 additions and 0 deletions

View File

@@ -2,6 +2,10 @@
<Dialog title="Settings">
<div class="dialog-body">
<div class="dialog-section">
<h3 class="dialog-heading">Filter</h3>
<p class="dialog-description">Check the tags that you prefer to be <strong>excluded</strong> from the results. The filter is a courtesy, and provides no guarantees.</p>
<ul class="tags nolist">
<li
v-for="tag in tags"
@@ -11,6 +15,7 @@
<label class="tag noselect">
<Checkbox
:checked="checkedTags.has(tag)"
class="minus"
@change="(checked) => toggleTag(tag, checked)"
/>{{ tag }}
</label>