Skip to content

Commit

Permalink
feat(issueProvider): make snack work
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Dec 12, 2024
1 parent 6b98083 commit a33736c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/features/issue/issue.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,13 @@ export class IssueService {
this._snackService.open({
ico: 'arrow_upward',
msg: T.F.TASK.S.FOUND_MOVE_FROM_OTHER_LIST,
translateParams: { title: res.task.title },
translateParams: {
title: res.task.title,
contextTitle: res.task.projectId
? (await this._projectService.getByIdOnce$(res.task.projectId).toPromise())
?.title
: 'another tag',
},
});
return true;
}
Expand Down

0 comments on commit a33736c

Please sign in to comment.