summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-01-20 16:29:06 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-01-20 16:29:06 -0500
commit6b26aa94135bb08d74ba18ab609ada5e967d5a0d (patch)
tree5c249abb583357dd51800401b0f381a859634719
parentd703d09063538fb91baa5a21b1001216c43d848a (diff)
downloadchat-6b26aa94135bb08d74ba18ab609ada5e967d5a0d.tar.gz
chat-6b26aa94135bb08d74ba18ab609ada5e967d5a0d.tar.bz2
chat-6b26aa94135bb08d74ba18ab609ada5e967d5a0d.zip
Changed UnreadChannelIndicator display style so that it uses a value that IE11 supports
-rw-r--r--web/react/components/unread_channel_indicator.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/unread_channel_indicator.jsx b/web/react/components/unread_channel_indicator.jsx
index 6ae06528b..c0c34584f 100644
--- a/web/react/components/unread_channel_indicator.jsx
+++ b/web/react/components/unread_channel_indicator.jsx
@@ -10,7 +10,7 @@ export default class UnreadChannelIndicator extends React.Component {
render() {
let displayValue = 'none';
if (this.props.show) {
- displayValue = 'initial';
+ displayValue = 'block';
}
return (
<div