From c4a53ae9ae15ee7fb0710652b6b678b1dda18395 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 23 Jun 2025 16:38:29 -0600 Subject: [PATCH] Don't hide downlaod button when there is no review item --- .../overlay/detail/SearchDetailDialog.tsx | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/web/src/components/overlay/detail/SearchDetailDialog.tsx b/web/src/components/overlay/detail/SearchDetailDialog.tsx index 83a6c7764..30711613f 100644 --- a/web/src/components/overlay/detail/SearchDetailDialog.tsx +++ b/web/src/components/overlay/detail/SearchDetailDialog.tsx @@ -1242,13 +1242,13 @@ export function VideoTab({ search }: VideoTabProps) { <> - {reviewItem && ( -
+
+ {reviewItem && ( - - - - - - - - - - - {t("button.download", { ns: "common" })} - - - -
- )} + )} + + + + + + + + + + + {t("button.download", { ns: "common" })} + + + +
);