mirror of
https://github.com/artegoser/ultyt.git
synced 2024-11-05 12:33:59 +03:00
fix: suggestions
idk why break all not working
This commit is contained in:
parent
5b2300cd79
commit
84ea50339d
2 changed files with 4 additions and 10 deletions
|
@ -36,7 +36,7 @@ export function NavbarComponent() {
|
|||
|
||||
<NavbarContent className="sm:flex gap-4" justify="start">
|
||||
<NavbarItem>
|
||||
<div className="relative block">
|
||||
<div className="relative inline-block text-left">
|
||||
<Input
|
||||
isClearable
|
||||
radius="lg"
|
||||
|
@ -61,18 +61,14 @@ export function NavbarComponent() {
|
|||
}
|
||||
/>
|
||||
<div
|
||||
className="absolute right-1/2 md:right-1 mt-1 flex flex-col justify-center backdrop-blur-3xl rounded-xl p-2 bg-gray-50 dark:bg-transparent"
|
||||
style={{
|
||||
backfaceVisibility: "hidden",
|
||||
transform: "translateZ(0)",
|
||||
}}
|
||||
className="absolute right-0 z-10 mt-2 flex flex-col backdrop-blur-3xl rounded-xl bg-gray-50 dark:bg-transparent"
|
||||
>
|
||||
{suggestions.length > 0 &&
|
||||
suggestions.map((suggestion) => (
|
||||
<Button
|
||||
key={suggestion}
|
||||
onClick={() => navigate(`/search?q=${suggestion}`)}
|
||||
className="m-1"
|
||||
className="m-1 break-all"
|
||||
>
|
||||
{suggestion}
|
||||
</Button>
|
||||
|
|
|
@ -38,9 +38,7 @@ export function VideoComponent({ video, uploaderAvatar }: VideoComponentProps) {
|
|||
<div className="flex flex-row items-center">
|
||||
<EyeIcon className="w-6 h-6 p-1" />
|
||||
<p className="flex-none text-md">
|
||||
{`${shortenNumber(video.views)}${
|
||||
video.uploadedDate ? ` • ${video.uploadedDate}` : ""
|
||||
}`}
|
||||
{`${shortenNumber(video.views)}${video.uploadedDate ? ` • ${video.uploadedDate}` : ""}`}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue