mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix order of gain menu options (#2105)
This commit is contained in:
parent
33f033beba
commit
2de570fe72
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ export const ReplayGainToggle = (props) => {
|
|||
label={translate('menu.personal.options.replaygain')}
|
||||
choices={[
|
||||
{ id: 'none', name: 'menu.personal.options.gain.none' },
|
||||
{ id: 'track', name: 'menu.personal.options.gain.album' },
|
||||
{ id: 'album', name: 'menu.personal.options.gain.track' },
|
||||
{ id: 'album', name: 'menu.personal.options.gain.album' },
|
||||
{ id: 'track', name: 'menu.personal.options.gain.track' },
|
||||
]}
|
||||
defaultValue={gainInfo.gainMode}
|
||||
onChange={(event) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue