Skip to content

Commit 1cf3206

Browse files
feat: Switch location of Mods and Changelog tabs (#1002)
* feat: Switch location of Mods and Changelog tabs Usually players care more about mods than changelogs so it should be further in front. * fix: Revert unnecessary component re-order
1 parent efbff4c commit 1cf3206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-vue/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export default {
6767
data-tauri-drag-region
6868
>
6969
<el-menu-item index="/">{{ $t('menu.play') }}</el-menu-item>
70-
<el-menu-item index="/changelog">{{ $t('menu.changelog') }}</el-menu-item>
7170
<el-menu-item index="/mods">{{ $t('menu.mods') }}</el-menu-item>
71+
<el-menu-item index="/changelog">{{ $t('menu.changelog') }}</el-menu-item>
7272
<el-menu-item index="/settings">{{ $t('menu.settings') }}</el-menu-item>
7373
<el-menu-item index="/dev" v-if="$store.state.developer_mode">{{ $t('menu.dev') }}</el-menu-item>
7474
</el-menu>

0 commit comments

Comments
 (0)