Merge pull request #509 from h3poteto/iss-505
closes #505 Update default toot visibility of new toot
This commit is contained in:
commit
a0c53e6857
|
@ -32,6 +32,9 @@ const App = {
|
||||||
},
|
},
|
||||||
updateDisplayNameStyle (state, value) {
|
updateDisplayNameStyle (state, value) {
|
||||||
state.displayNameStyle = value
|
state.displayNameStyle = value
|
||||||
|
},
|
||||||
|
updateTootVisibility (state, value) {
|
||||||
|
state.tootVisibility = value
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
|
@ -55,6 +58,7 @@ const App = {
|
||||||
commit('updateTheme', conf.general.theme)
|
commit('updateTheme', conf.general.theme)
|
||||||
commit('updateDisplayNameStyle', conf.general.displayNameStyle)
|
commit('updateDisplayNameStyle', conf.general.displayNameStyle)
|
||||||
commit('updateFontSize', conf.general.fontSize)
|
commit('updateFontSize', conf.general.fontSize)
|
||||||
|
commit('updateTootVisibility', conf.general.tootVisibility)
|
||||||
resolve(conf)
|
resolve(conf)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue