From 616db50fe8cb9586c2eeeb7a8543c34728cbad65 Mon Sep 17 00:00:00 2001 From: Sean Marcia Date: Sat, 16 Sep 2023 14:06:43 -0400 Subject: [PATCH] If there are zero issues we should not show the widget --- components/RepositoryItemTopBar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/RepositoryItemTopBar.tsx b/components/RepositoryItemTopBar.tsx index c12a71b8..b0234f19 100644 --- a/components/RepositoryItemTopBar.tsx +++ b/components/RepositoryItemTopBar.tsx @@ -30,10 +30,11 @@ export const RepositoryItemTopBar = ({
+ {repositoryNumIssues > 0 && + />} ); };