Skip to content

Commit 057b43a

Browse files
authored
fix: remove stray 0 when no data is in users table (#10584)
1 parent f418983 commit 057b43a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/UsersPage/UsersPageView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const UsersPageView: FC<React.PropsWithChildren<UsersPageViewProps>> = ({
100100
authMethods={authMethods}
101101
/>
102102

103-
{count && (
103+
{count !== undefined && (
104104
<PaginationWidgetBase
105105
count={count}
106106
limit={limit}

0 commit comments

Comments
 (0)