From 6b26aa94135bb08d74ba18ab609ada5e967d5a0d Mon Sep 17 00:00:00 2001 From: hmhealey Date: Wed, 20 Jan 2016 16:29:06 -0500 Subject: Changed UnreadChannelIndicator display style so that it uses a value that IE11 supports --- web/react/components/unread_channel_indicator.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/react/components/unread_channel_indicator.jsx') 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 (