mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
fix(ui): make random albums order stick when coming back to the grid
This commit is contained in:
parent
d0784b6a21
commit
b6433057e9
1 changed files with 2 additions and 5 deletions
|
@ -29,7 +29,6 @@ import albumLists, { defaultAlbumList } from './albumLists'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
import AlbumInfo from './AlbumInfo'
|
import AlbumInfo from './AlbumInfo'
|
||||||
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
|
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
|
||||||
import { useMemo } from 'react'
|
|
||||||
|
|
||||||
const AlbumFilter = (props) => {
|
const AlbumFilter = (props) => {
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
|
@ -80,6 +79,8 @@ const AlbumListTitle = ({ albumListType }) => {
|
||||||
return <Title subTitle={title} args={{ smart_count: 2 }} />
|
return <Title subTitle={title} args={{ smart_count: 2 }} />
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const randomStartingSeed = Math.random().toString()
|
||||||
|
|
||||||
const AlbumList = (props) => {
|
const AlbumList = (props) => {
|
||||||
const { width } = props
|
const { width } = props
|
||||||
const albumView = useSelector((state) => state.albumView)
|
const albumView = useSelector((state) => state.albumView)
|
||||||
|
@ -89,10 +90,6 @@ const AlbumList = (props) => {
|
||||||
const refresh = useRefresh()
|
const refresh = useRefresh()
|
||||||
useResourceRefresh('album')
|
useResourceRefresh('album')
|
||||||
|
|
||||||
const randomStartingSeed = useMemo(() => {
|
|
||||||
return Math.random().toString()
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
const seed = `${randomStartingSeed}-${version}`
|
const seed = `${randomStartingSeed}-${version}`
|
||||||
|
|
||||||
const albumListType = location.pathname
|
const albumListType = location.pathname
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue