summaryrefslogtreecommitdiffstats
path: root/web/react/components/toggle_modal_button.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-22 08:31:10 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-22 08:47:00 -0500
commit4c92a1c1e35402730f74cf24a0c71729f4d0a676 (patch)
treea614a1bd7c10414182696e794a9e8dfc119e280e /web/react/components/toggle_modal_button.jsx
parent040bff2b9f384b88179f6ec1beb40d92102c9ba3 (diff)
downloadchat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.gz
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.bz2
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.zip
Updating some client deps + eslint
Diffstat (limited to 'web/react/components/toggle_modal_button.jsx')
-rw-r--r--web/react/components/toggle_modal_button.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/toggle_modal_button.jsx b/web/react/components/toggle_modal_button.jsx
index ce8ff3f60..10f9a4736 100644
--- a/web/react/components/toggle_modal_button.jsx
+++ b/web/react/components/toggle_modal_button.jsx
@@ -22,7 +22,7 @@ export default class ModalToggleButton extends React.Component {
}
render() {
- const {children, dialogType, dialogProps, onClick, ...props} = this.props; // eslint-disable-line no-redeclare
+ const {children, dialogType, dialogProps, onClick, ...props} = this.props; // eslint-disable-line no-use-before-define
// allow callers to provide an onClick which will be called before the modal is shown
let clickHandler = this.show;