From a50e5b0ec16d742feb599bc0d67fb9095d879408 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Mon, 20 Jul 2026 14:16:12 -0400 Subject: [PATCH] slides: fix manager thumbnail 404 under /ops + single-column order list SlideManager rendered raw, so the root-relative /api/slides/img/... path 404'd under the /ops subpath mount (the /tv display already wrapped withBase; the manager did not). Wrap the thumbnail in withBase. Also switch the multi-column grid to a single-column list with order numbers so the top-to-bottom play order is clear to arrange. --- .../slides/frontend/views/SlideManager.vue | 82 +++++++++---------- 1 file changed, 39 insertions(+), 43 deletions(-) diff --git a/plugins/slides/frontend/views/SlideManager.vue b/plugins/slides/frontend/views/SlideManager.vue index 1aad6a7..25568d1 100644 --- a/plugins/slides/frontend/views/SlideManager.vue +++ b/plugins/slides/frontend/views/SlideManager.vue @@ -32,18 +32,15 @@
Loading...
No slides yet. Upload some images.
-
-
- - -
- {{ slide.filename }} -
- - -
+
+
+ + {{ idx + 1 }} + + {{ slide.filename }} +
+ +
@@ -54,6 +51,7 @@