Skip to content

Commit 9d03f91

Browse files
authored
Merge pull request #88 from Lynesth/patch-8
Fix go back bug
2 parents 8aa6aee + 8d6b7e8 commit 9d03f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Action/GoBackAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class GoBackAction
1212
public function __invoke(CliMenu $menu) : void
1313
{
1414
if ($parent = $menu->getParent()) {
15-
$menu->close();
15+
$menu->closeThis();
1616
$parent->open();
1717
}
1818
}

0 commit comments

Comments
 (0)