summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-01-21 09:02:36 -0600
committerCorey Hulen <corey@hulen.com>2016-01-21 09:02:36 -0600
commit060e38ef86db7c4fd9247161ca0cbd379960d375 (patch)
tree2b2b476843e006af191b46e812fe8bbb7bfe7c6a
parent9aa23c1994af1f96f9a9bfaabfc3b4eee1790372 (diff)
parent6b26aa94135bb08d74ba18ab609ada5e967d5a0d (diff)
downloadchat-060e38ef86db7c4fd9247161ca0cbd379960d375.tar.gz
chat-060e38ef86db7c4fd9247161ca0cbd379960d375.tar.bz2
chat-060e38ef86db7c4fd9247161ca0cbd379960d375.zip
Merge pull request #1935 from hmhealey/plt1664
PLT-1664 Fix unread channel indicators so that they work on IE11
-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