Skip to content

Commit

Permalink
Add empty placeholder for audit entry
Browse files Browse the repository at this point in the history
  • Loading branch information
dv297 committed Oct 20, 2022
1 parent fa76102 commit 5cdec24
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/pages/issue/IssueAuditEntryTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ const AuditEntryList = (props: AuditEntryListProps) => {
return null;
}

if (issueAuditEntryResponse.length === 0) {
return (
<div className="w-full h-32 flex">
<p>No changes or comments made yet.</p>
</div>
);
}

// return <div>AuditEntryList</div>;
return (
<div>
Expand Down

1 comment on commit 5cdec24

@vercel
Copy link

@vercel vercel bot commented on 5cdec24 Oct 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

planner – ./

planner-nine.vercel.app
planner-git-main-dv297.vercel.app
planner-dv297.vercel.app

Please sign in to comment.