From 3f5e6d72d694833987f10bceb619d6f57f6cb577 Mon Sep 17 00:00:00 2001 From: Gen Neko Date: Sun, 5 Apr 2020 16:55:00 +0900 Subject: [PATCH] Fix a blank Goto Anything screen (#2983) --- ElectronClient/plugins/GotoAnything.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElectronClient/plugins/GotoAnything.jsx b/ElectronClient/plugins/GotoAnything.jsx index b0995f5cc2..2ef68e4817 100644 --- a/ElectronClient/plugins/GotoAnything.jsx +++ b/ElectronClient/plugins/GotoAnything.jsx @@ -48,7 +48,7 @@ class Dialog extends React.PureComponent { this.onKeyDown = this.onKeyDown.bind(this); this.input_onChange = this.input_onChange.bind(this); this.input_onKeyDown = this.input_onKeyDown.bind(this); - this.modalLayer_onClick = this.dialogModalLayer_onClick.bind(this); + this.modalLayer_onClick = this.modalLayer_onClick.bind(this); this.listItemRenderer = this.listItemRenderer.bind(this); this.listItem_onClick = this.listItem_onClick.bind(this); this.helpButton_onClick = this.helpButton_onClick.bind(this);