fix(ui): random seed for album list on page reload (#3279)

* random seed for album list on page reload

* Nit: inline variable

---------

Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Kendall Garner 2024-09-18 16:35:13 +00:00 committed by GitHub
parent 1ba390a72a
commit ee2e04b832
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,6 +29,7 @@ import albumLists, { defaultAlbumList } from './albumLists'
import config from '../config'
import AlbumInfo from './AlbumInfo'
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
import { useMemo } from 'react'
const AlbumFilter = (props) => {
const translate = useTranslate()
@ -88,6 +89,12 @@ const AlbumList = (props) => {
const refresh = useRefresh()
useResourceRefresh('album')
const randomStartingSeed = useMemo(() => {
return Math.random().toString()
}, [])
const seed = `${randomStartingSeed}-${version}`
const albumListType = location.pathname
.replace(/^\/album/, '')
.replace(/^\//, '')
@ -130,7 +137,7 @@ const AlbumList = (props) => {
{...props}
exporter={false}
bulkActionButtons={false}
filter={{ seed: version }}
filter={{ seed }}
actions={<AlbumListActions />}
filters={<AlbumFilter />}
perPage={perPage}