Changed UnreadChannelIndicator display style so that it uses a value that IE11 supports

Этот коммит содержится в:
hmhealey
2016-01-20 16:29:06 -05:00
родитель d703d09063
Коммит 6b26aa9413

Просмотреть файл

@@ -10,7 +10,7 @@ export default class UnreadChannelIndicator extends React.Component {
render() { render() {
let displayValue = 'none'; let displayValue = 'none';
if (this.props.show) { if (this.props.show) {
displayValue = 'initial'; displayValue = 'block';
} }
return ( return (
<div <div