{item.name}
@@ -202,7 +202,7 @@ export const SearchResults: FunctionComponent<{
{results.length > 0 && !query && (
- Recently opened
+ Recently opened
)}
{results.length === 0 && query && (
@@ -221,6 +221,7 @@ export const SearchResults: FunctionComponent<{
{...result}
{...getItemProps({ key: index, index, item: result })}
isHighlighted={highlightedIndex === index}
+ className="search-result-back"
>
Back to components
@@ -234,6 +235,7 @@ export const SearchResults: FunctionComponent<{
{...result}
{...getItemProps({ key: index, index, item: result })}
isHighlighted={highlightedIndex === index}
+ className="search-result-clearHistory"
>
Clear history
@@ -246,6 +248,7 @@ export const SearchResults: FunctionComponent<{
{...result}
{...getItemProps({ key: index, index, item: result })}
isHighlighted={highlightedIndex === index}
+ className="search-result-more"
>
Show {result.moreCount} more results
@@ -260,6 +263,7 @@ export const SearchResults: FunctionComponent<{
{...result}
{...getItemProps({ key, index, item: result })}
isHighlighted={highlightedIndex === index}
+ className="search-result-item"
/>
);
})}
diff --git a/lib/ui/src/components/sidebar/Tree.tsx b/lib/ui/src/components/sidebar/Tree.tsx
index 83b737fe1f58..2d3eddc2d1df 100644
--- a/lib/ui/src/components/sidebar/Tree.tsx
+++ b/lib/ui/src/components/sidebar/Tree.tsx
@@ -77,6 +77,7 @@ const Node = React.memo(
(
if (isRoot(item)) {
return (
-
+
{item.name}
{
@@ -119,6 +128,7 @@ const Node = React.memo(