Skip to content

Commit

Permalink
♻️ front: accept false in grouped rows molecule for the { bool && <el…
Browse files Browse the repository at this point in the history
…>} pattern to work
  • Loading branch information
ericlinagora committed Apr 21, 2024
1 parent 9c17742 commit 1c5bc83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tdrive/frontend/src/app/molecules/grouped-rows/base/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ interface BlockProps extends React.InputHTMLAttributes<HTMLInputElement> {
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;
}

Expand Down

0 comments on commit 1c5bc83

Please sign in to comment.