summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_dropdown_menu.jsx
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-15 07:45:46 +0800
committerJoram Wilander <jwawilander@gmail.com>2017-06-14 19:45:46 -0400
commit0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18 (patch)
tree2fbfd8bc9f30e6ac84bcb14cc8c4c0a5e566be24 /webapp/components/rhs_dropdown_menu.jsx
parent5b017171cd42872a11a9c8b3e2e8bb9bd29c2b3a (diff)
downloadchat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.tar.gz
chat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.tar.bz2
chat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.zip
create DotMenu components and add dotmenu IDs to posts at center and RHS (#6642)
Diffstat (limited to 'webapp/components/rhs_dropdown_menu.jsx')
-rw-r--r--webapp/components/rhs_dropdown_menu.jsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/webapp/components/rhs_dropdown_menu.jsx b/webapp/components/rhs_dropdown_menu.jsx
deleted file mode 100644
index 5f5107691..000000000
--- a/webapp/components/rhs_dropdown_menu.jsx
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {Dropdown} from 'react-bootstrap';
-import React from 'react';
-
-export default class RhsDropdownMenu extends Dropdown.Menu {
- constructor(props) { //eslint-disable-line no-useless-constructor
- super(props);
- }
-
- render() {
- return (
- <div
- className='dropdown-menu__content'
- onClick={this.props.onClose}
- >
- {super.render()}
- </div>
- );
- }
-}