diff --git a/Docs/tasks.md b/Docs/tasks.md
index 9174eac..503e472 100644
--- a/Docs/tasks.md
+++ b/Docs/tasks.md
@@ -1,11 +1,3 @@
-### Task 21: Fix `Logout` UI Test
-**Test Result:** FAIL — Same as Task 16
-**File:** `tests/robot/ui/login.robot` and `src/server/web/templates/login.html`
-**Instructions:**
-Fix the element ID mismatches in `login.html` as described in Task 16. The `Perform Logout` keyword clicks `id=logout-btn`. Verify this button exists in the dashboard/index template and redirects to `/login` after logout.
-
----
-
### Task 22: Fix All Dashboard UI Tests
**Test Result:** FAIL — All 11 tests fail with `TimeoutError: locator.fill: Timeout 10000ms exceeded. Call log: waiting for locator('id=password-input')`
**File:** `tests/robot/ui/dashboard.robot` and `src/server/web/templates/login.html`
diff --git a/src/server/web/static/css/components/notifications.css b/src/server/web/static/css/components/notifications.css
index dbd4e6d..0042450 100644
--- a/src/server/web/static/css/components/notifications.css
+++ b/src/server/web/static/css/components/notifications.css
@@ -13,6 +13,7 @@
display: flex;
flex-direction: column;
gap: var(--spacing-sm);
+ pointer-events: none;
}
/* Toast base */
@@ -24,6 +25,7 @@
box-shadow: var(--shadow-elevated);
min-width: 300px;
animation: slideIn var(--transition-duration) var(--transition-easing);
+ pointer-events: auto;
}
/* Toast variants */
diff --git a/src/server/web/static/js/app.js b/src/server/web/static/js/app.js
index 93e22e9..482f2e3 100644
--- a/src/server/web/static/js/app.js
+++ b/src/server/web/static/js/app.js
@@ -529,9 +529,15 @@ class AniWorldApp {
this.toggleMissingOnlyFilter();
});
- document.getElementById('sort-alphabetical').addEventListener('click', () => {
- this.toggleAlphabeticalSort();
- });
+ document.getElementById('show-all-series').addEventListener('click', () => {
+ if (this.showMissingOnly) {
+ this.toggleMissingOnlyFilter();
+ }
+ });
+
+ document.getElementById('sort-alphabetical').addEventListener('click', () => {
+ this.toggleAlphabeticalSort();
+ });
}
initTheme() {
diff --git a/src/server/web/templates/index.html b/src/server/web/templates/index.html
index b53a21c..d90f95b 100644
--- a/src/server/web/templates/index.html
+++ b/src/server/web/templates/index.html
@@ -131,7 +131,11 @@
Missing Episodes Only
-