fix: Application Error on issues list page (#1064)
* fix: Application Error on issues list page * fix: can't read property of undefined at renderTick
This commit is contained in:
parent
4ce5a450d9
commit
6da4247400
3 changed files with 14 additions and 14 deletions
|
|
@ -80,7 +80,7 @@ export const AnalyticsGraph: React.FC<Props> = ({
|
|||
params.x_axis === "assignees__email"
|
||||
? (datum) => {
|
||||
const avatar = analytics.extras.assignee_details?.find(
|
||||
(a) => a.assignees__email === datum.value
|
||||
(a) => a?.assignees__email === datum?.value
|
||||
)?.assignees__avatar;
|
||||
|
||||
if (avatar && avatar !== "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue