mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
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:
parent
1ba390a72a
commit
ee2e04b832
1 changed files with 8 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue