From 0dec935e732d3467d2ebfad95d7ad1c12a96dfab Mon Sep 17 00:00:00 2001 From: Eric Doughty-Papassideris Date: Sun, 21 Apr 2024 22:10:34 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20front:=20accept=20false?= =?UTF-8?q?=20in=20grouped=20rows=20molecule=20for=20the=20{=20bool=20&&?= =?UTF-8?q?=20}=20pattern=20to=20work?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/app/molecules/grouped-rows/base/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/base/index.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/base/index.tsx index 7909ed1b..70b8813e 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/base/index.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/base/index.tsx @@ -7,9 +7,9 @@ interface BlockProps extends React.InputHTMLAttributes { avatar: JSX.Element; title: JSX.Element | string; subtitle: JSX.Element | string; - title_suffix?: JSX.Element | string; - subtitle_suffix?: JSX.Element | string; - suffix?: JSX.Element | string; + title_suffix?: JSX.Element | string | false; + subtitle_suffix?: JSX.Element | string | false; + suffix?: JSX.Element | string | false; className?: string; }