Blacklist typing state (#705)
This commit is contained in:
parent
f56e510cff
commit
a85e523b0e
1 changed files with 7 additions and 1 deletions
|
|
@ -42,6 +42,11 @@ export default function configureAppStore(initialState) {
|
|||
['login', 'root']
|
||||
);
|
||||
|
||||
const typingBlackListFilter = createBlacklistFilter(
|
||||
'entities',
|
||||
['typing']
|
||||
);
|
||||
|
||||
const setTransformer = createTransform(
|
||||
(inboundState, key) => {
|
||||
if (key === 'entities') {
|
||||
|
|
@ -158,7 +163,8 @@ export default function configureAppStore(initialState) {
|
|||
debounce: 500,
|
||||
transforms: [
|
||||
setTransformer,
|
||||
viewsBlackListFilter
|
||||
viewsBlackListFilter,
|
||||
typingBlackListFilter
|
||||
]
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue