fix exact search result not showing
This commit is contained in:
parent
80dddf8f9e
commit
3884bb32ad
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ class WunderBar extends React.PureComponent<Props, State> {
|
|||
>
|
||||
<Icon icon={this.getSuggestionIcon(type)} />
|
||||
<span className="wunderbar__suggestion-label">
|
||||
{type === SEARCH_TYPES.TAG ? <Tag name={value} /> : shorthand}
|
||||
{type === SEARCH_TYPES.TAG ? <Tag name={value} /> : shorthand || value}
|
||||
</span>
|
||||
{isHighlighted && (
|
||||
<span className="wunderbar__suggestion-label--action">
|
||||
|
|
Loading…
Reference in a new issue