Skip to content
This repository was archived by the owner on Apr 1, 2020. It is now read-only.

add slash back for cmdline search #2374

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion browser/src/UI/components/CommandLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,13 @@ export class CommandLine extends React.PureComponent<ICommandLineRendererProps,
iconName="arrow-right"
key={`${character}-arrow-right`}
/>,
character,
]
case "?":
return [
<CommandLineIcon iconName="search" key={`${character}-search`} />,
<CommandLineIcon key={`${character}-arrow-left`} arrow iconName="arrow-left" />,
<CommandLineIcon arrow iconName="arrow-left" key={`${character}-arrow-left`} />,
character,
]
default:
return character
Expand Down