summaryrefslogtreecommitdiffstats
path: root/webapp/components/new_channel_modal/new_channel_modal.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-06-23 07:28:04 +0500
committerJoram Wilander <jwawilander@gmail.com>2017-06-22 22:28:04 -0400
commitdfbb16521c9d10cd491429874660bfdde3e19e1d (patch)
treec83559476382e2d2b600f49a2575c2f8896552fe /webapp/components/new_channel_modal/new_channel_modal.jsx
parentd8cd38f4831ea2cd6a42e1d8aa68c0b24c3a4bd1 (diff)
downloadchat-dfbb16521c9d10cd491429874660bfdde3e19e1d.tar.gz
chat-dfbb16521c9d10cd491429874660bfdde3e19e1d.tar.bz2
chat-dfbb16521c9d10cd491429874660bfdde3e19e1d.zip
Minor bug and UI fixes (#6729)
* PLT-6797 - Code block language tag not selectable * PLT-6771 - Aligning search box with RHS * PLT-6827 - Fixing link color in error bar * PLT-6241 - Adding edge detection
Diffstat (limited to 'webapp/components/new_channel_modal/new_channel_modal.jsx')
-rw-r--r--webapp/components/new_channel_modal/new_channel_modal.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/new_channel_modal/new_channel_modal.jsx b/webapp/components/new_channel_modal/new_channel_modal.jsx
index d77c29d64..60c0271a7 100644
--- a/webapp/components/new_channel_modal/new_channel_modal.jsx
+++ b/webapp/components/new_channel_modal/new_channel_modal.jsx
@@ -112,7 +112,7 @@ export default class NewChannelModal extends React.PureComponent {
componentDidMount() {
// ???
- if (UserAgent.isInternetExplorer()) {
+ if (UserAgent.isInternetExplorer() || UserAgent.isEdge()) {
$('body').addClass('browser--ie');
}
}