a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: export string

intergrav 1d6959a2 60bca01d

+3 -12
+3 -12
src/lib/Queue.svelte
··· 288 288 items={[ 289 289 { label: t("play"), action: () => goto(menu!.index) }, 290 290 { label: t("play_next"), action: playNext }, 291 - { 292 - label: t("sort"), 293 - items: getSortItems(), 294 - }, 291 + { label: t("sort"), items: getSortItems() }, 295 292 { label: t("favorite"), action: () => starSelected(true) }, 296 293 { label: t("unfavorite"), action: () => starSelected(false) }, 297 294 { ··· 305 302 { label: t("none"), action: () => rateSelected(0) }, 306 303 ], 307 304 }, 308 - { 309 - label: queue.sel.length ? t("export_selection") : t("export"), 310 - action: () => (ui.exportPlaylist = true), 311 - }, 305 + { label: t("export"), action: () => (ui.exportPlaylist = true) }, 312 306 { label: t("move_up"), action: () => reorder(-1) }, 313 307 { label: t("move_down"), action: () => reorder(1) }, 314 - { 315 - label: t("clear"), 316 - action: remove, 317 - }, 308 + { label: t("clear"), action: remove }, 318 309 ]} 319 310 /> 320 311 {/if}