feat: loop slideshows (#25462)

* Add Repeat to the slideshow in the web UI.

* Fix typo in SlideshowSettingsModal description prop

Fixed spelling

---------

Co-authored-by: generalzero <generalzero@generalzero.org>
This commit is contained in:
Avalanche Ridings
2026-01-23 23:09:29 -05:00
committed by GitHub
parent d0d269677e
commit 497003ec57
4 changed files with 18 additions and 0 deletions
+2
View File
@@ -40,6 +40,7 @@ function createSlideshowStore() {
const slideshowDelay = persisted<number>('slideshow-delay', 5, {});
const slideshowTransition = persisted<boolean>('slideshow-transition', true);
const slideshowAutoplay = persisted<boolean>('slideshow-autoplay', true, {});
const slideshowRepeat = persisted<boolean>('slideshow-repeat', false);
return {
restartProgress: {
@@ -71,6 +72,7 @@ function createSlideshowStore() {
showProgressBar,
slideshowTransition,
slideshowAutoplay,
slideshowRepeat,
};
}