mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: clear search results on new search. fix: related category title too long.
This commit is contained in:
parent
f8a6d18c37
commit
5aa8b1103e
2 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,7 @@ export const RelatedSection = (props) => {
|
|||
);
|
||||
})}
|
||||
</div>
|
||||
<div className="flex flex-col items-center justify-center flex-1 gap-2">
|
||||
<div className="flex flex-col items-center justify-center flex-1 gap-2 max-w-[400px] mx-auto">
|
||||
<h1 className="text-2xl font-bold">{props.name_ru}</h1>
|
||||
<p>
|
||||
{props.release_count} {declension} во франшизе
|
||||
|
|
|
@ -72,6 +72,7 @@ export function SearchPage() {
|
|||
className="max-w-full mx-auto"
|
||||
onSubmit={(e) => {
|
||||
e.preventDefault();
|
||||
setContent(null)
|
||||
setQuery(e.target[0].value.trim());
|
||||
router.push(`/search?q=${e.target[0].value.trim()}`);
|
||||
}}
|
||||
|
|
Loading…
Add table
Reference in a new issue