Merge pull request #480 from aviraldg/develop

Disable username and room decorators
This commit is contained in:
Matthew Hodgson 2016-09-15 22:36:33 +01:00 committed by GitHub
commit f2a8ead42a

View file

@ -119,7 +119,8 @@ export function getScopedRTDecorators(scope: any): CompositeDecorator {
}
};
return [usernameDecorator, roomDecorator, emojiDecorator];
// TODO Re-enable usernameDecorator and roomDecorator
return [emojiDecorator];
}
export function getScopedMDDecorators(scope: any): CompositeDecorator {