hide badge when context menu is open

pull/21833/head
Agusti Bau 2020-05-02 13:12:31 +02:00
parent fc5a5c411f
commit a84a3c4780
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ export default createReactClass({
const badge = TagOrderStore.getGroupBadge(this.props.tag);
let badgeElement;
if (badge && !this.state.hover) {
if (badge && !this.state.hover && !this.props.menuDisplayed) {
const badgeClasses = classNames({
"mx_TagTile_badge": true,
"mx_TagTile_badgeHighlight": badge.highlight,