chore: Update translations
This commit is contained in:
@ -197,10 +197,11 @@ function SearchBar() {
|
||||
<Icon
|
||||
name="search"
|
||||
className="max-xl:text-black mx:text-layer-4 max-xl:ml-4 max-xl:my-1"
|
||||
size={16}
|
||||
size={16}
|
||||
onClick={() => {
|
||||
navigate("/search")
|
||||
}}/>
|
||||
navigate("/search");
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -49,21 +49,24 @@ export default function SearchPage() {
|
||||
className="text-layer-4 ml-4 my-1"
|
||||
size={16}
|
||||
onClick={() => {
|
||||
navigate("/search")
|
||||
}} />
|
||||
navigate("/search");
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
{term && <>
|
||||
<h2 className="mb-4">
|
||||
<FormattedMessage
|
||||
defaultMessage="Search results: {term}"
|
||||
id="A1zT+z"
|
||||
values={{
|
||||
term,
|
||||
}}
|
||||
/>
|
||||
</h2>
|
||||
<VideoGridSorted evs={results} showAll={true} />
|
||||
</>}
|
||||
{term && (
|
||||
<>
|
||||
<h2 className="mb-4">
|
||||
<FormattedMessage
|
||||
defaultMessage="Search results: {term}"
|
||||
id="A1zT+z"
|
||||
values={{
|
||||
term,
|
||||
}}
|
||||
/>
|
||||
</h2>
|
||||
<VideoGridSorted evs={results} showAll={true} />
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user