Fix order of gain menu options (#2105)

This commit is contained in:
Kendall Garner 2023-01-22 16:08:54 +00:00 committed by GitHub
parent 33f033beba
commit 2de570fe72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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) => {