Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: remove stray 0 when no data is in users table
  • Loading branch information
Parkreiner committed Nov 8, 2023
commit dbdf0eeeac132d1b1f2b3f9e8273373436122ee9
2 changes: 1 addition & 1 deletion site/src/pages/UsersPage/UsersPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const UsersPageView: FC<React.PropsWithChildren<UsersPageViewProps>> = ({
authMethods={authMethods}
/>

{count && (
{count !== undefined && (
<PaginationWidgetBase
count={count}
limit={limit}
Expand Down