File tree 2 files changed +15
-15
lines changed
src/render/core/app/components/Search
2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ const SearchResultItem = (props) => {
57
57
props . onClick &&
58
58
props . onClick ( props . _id )
59
59
}
60
-
60
+
61
61
return (
62
62
< ResultWrapper onClick = { handleClick } >
63
63
< Image src = { props . image } preload pulseStyle = { { position : 'relative' } } />
Original file line number Diff line number Diff line change @@ -56,16 +56,16 @@ const SearchResult = (props) => {
56
56
< PointsLoader />
57
57
</ ResultsEmpty >
58
58
) ||
59
- < CustomScrollbars
60
- autoHide
61
- autoHeight
62
- autoHeightMax = { 500 }
63
- autoHideTimeout = { 1000 }
64
- autoHideDuration = { 200 }
65
- thumbMinSize = { 30 }
66
- universal
67
- >
68
- {
59
+ < CustomScrollbars
60
+ autoHide
61
+ autoHeight
62
+ autoHeightMax = { 500 }
63
+ autoHideTimeout = { 1000 }
64
+ autoHideDuration = { 200 }
65
+ thumbMinSize = { 30 }
66
+ universal
67
+ >
68
+ {
69
69
( props . result ?. length > 0 &&
70
70
< ResultsContent >
71
71
< ResultsCollection >
@@ -85,11 +85,11 @@ const SearchResult = (props) => {
85
85
</ ResultsCollection >
86
86
</ ResultsContent >
87
87
) ||
88
- < ResultsEmpty >
89
- < NoResultsText > No results were found</ NoResultsText >
90
- </ ResultsEmpty >
88
+ < ResultsEmpty >
89
+ < NoResultsText > No results were found</ NoResultsText >
90
+ </ ResultsEmpty >
91
91
}
92
- </ CustomScrollbars >
92
+ </ CustomScrollbars >
93
93
}
94
94
</ ResultsWrapper >
95
95
)
You can’t perform that action at this time.
0 commit comments