Add language indicator icon and local settings for status icons (#1788)

* Add language indicator

* Add local settings for status icons

* Switch to text icon for language
This commit is contained in:
Claire
2022-05-27 16:34:29 +02:00
committed by GitHub
parent 6dd7180f05
commit 53c89ee44b
6 changed files with 90 additions and 10 deletions

View File

@ -54,6 +54,13 @@ const initialState = ImmutableMap({
favicon_badge : false,
tab_badge : true,
}),
status_icons : ImmutableMap({
language: true,
reply: true,
local_only: true,
media: true,
visibility: true,
}),
});
const hydrate = (state, localSettings) => state.mergeDeep(localSettings);