From 0c5b8831e0738f86ea7f7549dd3ec2c1642b055e Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Fri, 30 Aug 2024 00:16:30 +0200 Subject: [PATCH] feat: Switch location of Mods and Changelog tabs Usually players care more about mods than changelogs so it should be further in front. --- src-vue/src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue index 162b0b34..82a57336 100644 --- a/src-vue/src/App.vue +++ b/src-vue/src/App.vue @@ -13,8 +13,8 @@ import NotificationButton from "./components/NotificationButton.vue"; export default { components: { NotificationButton, - ChangelogView, DeveloperView, + ChangelogView, PlayView, SettingsView, ModsView @@ -67,8 +67,8 @@ export default { data-tauri-drag-region > {{ $t('menu.play') }} - {{ $t('menu.changelog') }} {{ $t('menu.mods') }} + {{ $t('menu.changelog') }} {{ $t('menu.settings') }} {{ $t('menu.dev') }}