Skip to content

Commit

Permalink
feat: Switch location of Mods and Changelog tabs
Browse files Browse the repository at this point in the history
Usually players care more about mods than changelogs so it should be further in front.
  • Loading branch information
GeckoEidechse committed Aug 29, 2024
1 parent 2931ff5 commit 0c5b883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-vue/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import NotificationButton from "./components/NotificationButton.vue";
export default {
components: {
NotificationButton,
ChangelogView,
DeveloperView,
ChangelogView,
PlayView,
SettingsView,
ModsView
Expand Down Expand Up @@ -67,8 +67,8 @@ export default {
data-tauri-drag-region
>
<el-menu-item index="/">{{ $t('menu.play') }}</el-menu-item>
<el-menu-item index="/changelog">{{ $t('menu.changelog') }}</el-menu-item>
<el-menu-item index="/mods">{{ $t('menu.mods') }}</el-menu-item>
<el-menu-item index="/changelog">{{ $t('menu.changelog') }}</el-menu-item>
<el-menu-item index="/settings">{{ $t('menu.settings') }}</el-menu-item>
<el-menu-item index="/dev" v-if="$store.state.developer_mode">{{ $t('menu.dev') }}</el-menu-item>
</el-menu>
Expand Down

0 comments on commit 0c5b883

Please sign in to comment.