Skip to content

Commit

Permalink
Add 'None' for unassigned tickets instead of blank
Browse files Browse the repository at this point in the history
  • Loading branch information
ay-bh committed Nov 2, 2024
1 parent 5fbc74f commit d200763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/issue_tracker/jsx/IssueCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ const IssueCard = React.memo(function IssueCard({
<div className="issue-dates">
<span>Created: {issue.dateCreated}</span>
<span>Last Updated: {issue.lastUpdate}</span>
<span>Assignee: {issue.assignee}</span>
<span>Assignee: {issue.assignee || 'None'}</span>
</div>
</div>
<form onSubmit={handleSubmit} className="issue-form">
Expand Down

0 comments on commit d200763

Please sign in to comment.