Support hiding activity from admin accounts not associated with the server
This commit is contained in:
parent
95de4c30fc
commit
cf01490883
4 changed files with 40 additions and 11 deletions
|
@ -26,6 +26,10 @@ const PaginationFooter = ({ pagination, className, onPageSelect }: Props) => {
|
|||
}
|
||||
}
|
||||
|
||||
if (pagination.total === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={classNames('flex items-center justify-between my-2', className)}>
|
||||
<p className={'text-sm text-neutral-500'}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue