Skip to content

Commit

Permalink
remove additional epic icon
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ray committed May 5, 2023
1 parent b4e21c1 commit 61b62f1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/js/components/githubIssues/selectIssueModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,11 @@ const TaskStatus = ({ task }: { task: IssueTask }) => {
};

const EpicStatus = ({ epic }: { epic: IssueEpic }) => {
const { status, icon } = getEpicStatus({ epicStatus: epic.status });
const { status } = getEpicStatus({ epicStatus: epic.status });

return (
<span
className="slds-m-left_x-small v-align-center icon-text-block"
title={status}
>
{icon}
<span className="slds-m-left_x-small v-align-center icon-text-block">
{status}
</span>
);
};
Expand Down

0 comments on commit 61b62f1

Please sign in to comment.