logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: b5d7a179c4a07abc79e7f0c26fb7f6ca19c4d7d3
parent: f7a38eb02175e92b2c2029c88e87d877157ffcab
Author: Roger Braun <roger@rogerbraun.net>
Date:   Sat, 18 Feb 2017 21:43:26 +0100

Reverse title and notification count.

Diffstat:

Msrc/modules/config.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/config.js b/src/modules/config.js @@ -14,7 +14,7 @@ const config = { }, actions: { setPageTitle ({state}, option = '') { - document.title = `${state.name} ${option}` + document.title = `${option} ${state.name}` }, setOption ({ commit, dispatch }, { name, value }) { commit('setOption', {name, value})