aboutsummaryrefslogtreecommitdiff
path: root/src/console/components
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-11 13:55:25 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-11 15:41:07 +0900
commitfcd15f4f09e412cb66f29649572b9d8ae6d50363 (patch)
treebb602d6dc3cfd15dcfca860751c95309aa69a53d /src/console/components
parentad1f3c07fbb90c4e69cc2374d74a7373e4da70f2 (diff)
Find as a controller
Diffstat (limited to 'src/console/components')
-rw-r--r--src/console/components/Console.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/components/Console.tsx b/src/console/components/Console.tsx
index 3274047..68cc523 100644
--- a/src/console/components/Console.tsx
+++ b/src/console/components/Console.tsx
@@ -38,7 +38,8 @@ class Console extends React.Component<Props> {
if (this.props.mode === 'command') {
return this.props.dispatch(consoleActions.enterCommand(value));
} else if (this.props.mode === 'find') {
- return this.props.dispatch(consoleActions.enterFind(value));
+ return this.props.dispatch(consoleActions.enterFind(
+ value === '' ? undefined : value));
}
}