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')}
|
label={translate('menu.personal.options.replaygain')}
|
||||||
choices={[
|
choices={[
|
||||||
{ id: 'none', name: 'menu.personal.options.gain.none' },
|
{ id: 'none', name: 'menu.personal.options.gain.none' },
|
||||||
{ id: 'track', name: 'menu.personal.options.gain.album' },
|
{ id: 'album', name: 'menu.personal.options.gain.album' },
|
||||||
{ id: 'album', name: 'menu.personal.options.gain.track' },
|
{ id: 'track', name: 'menu.personal.options.gain.track' },
|
||||||
]}
|
]}
|
||||||
defaultValue={gainInfo.gainMode}
|
defaultValue={gainInfo.gainMode}
|
||||||
onChange={(event) => {
|
onChange={(event) => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue