fix: undefined workspaceslug (#6636)
This commit is contained in:
parent
126575d22a
commit
84578a2764
8 changed files with 9 additions and 9 deletions
|
|
@ -36,7 +36,7 @@ export const IssueLink = ({ activity }: { activity: IIssueActivity }) => {
|
|||
const { isMobile } = usePlatformOS();
|
||||
|
||||
const workItemLink = generateWorkItemLink({
|
||||
workspaceSlug: workspaceSlug.toString() ?? activity.workspace_detail?.slug,
|
||||
workspaceSlug: workspaceSlug?.toString() ?? activity.workspace_detail?.slug,
|
||||
projectId: activity?.project,
|
||||
issueId: activity?.issue,
|
||||
projectIdentifier: activity?.project_detail?.identifier,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue