fix: Incorrect icon color on completed issue unfurl
This commit is contained in:
@@ -101,7 +101,9 @@ const presentIssue = (
|
|||||||
})),
|
})),
|
||||||
state: {
|
state: {
|
||||||
name: data.state,
|
name: data.state,
|
||||||
color: GitHubUtils.getColorForStatus(data.state),
|
color: GitHubUtils.getColorForStatus(
|
||||||
|
data.state === "closed" ? "done" : data.state
|
||||||
|
),
|
||||||
},
|
},
|
||||||
createdAt: data.created_at,
|
createdAt: data.created_at,
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user