Skip to content

Commit

Permalink
Fixes #1455
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBurrBurr committed Jun 29, 2021
1 parent 555ad0f commit 1b059cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/store/modules/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const mutations = {

export const actions = {
init({ commit }) {
commit('setDefaultView', storage.get('settings:default-view', 'home'));
commit('setDefaultView', storage.get('settings:default-view', 'bots'));
commit('setNotificationPosition', storage.get('settings:notification-position', 'rightBottom'));
commit('setNotifyRelease', storage.get('settings:notify-release', true));
commit('setNicknames', storage.get('settings:nicknames', false));
Expand Down
4 changes: 2 additions & 2 deletions src/views/UIConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
param: this.$t('default-page'),
paramName: 'defaultView',
type: 'enum',
defaultValue: 'home',
defaultValue: 'bots',
values: {
[this.$t('bots')]: 'home',
[this.$t('bots')]: 'bots',
[this.$t('commands')]: 'commands',
[this.$t('releases')]: 'releases',
[this.$t('plugins')]: 'plugins',
Expand Down

0 comments on commit 1b059cc

Please sign in to comment.