@if (task?.issueWasUpdated) {

{{ T.F.JIRA.ISSUE_CONTENT.LIST_OF_CHANGES | translate }}

} @if (issue?.storyPoints) { } @if (issue?.timespent || issue?.timeestimate) { } @if (jiraSubTasks$ | async; as jiraSubTasks) { } @if (jiraRelatedIssues$ | async; as relatedIssues) { } @if (issue?.components?.length) { } @if (issue?.description) { } @if (issue?.comments) { }
{{ T.F.JIRA.ISSUE_CONTENT.SUMMARY | translate }} {{ issue?.key }} {{ issue?.summary }}
{{ T.F.JIRA.ISSUE_CONTENT.STATUS | translate }} {{ issue?.status?.name }}
{{ T.F.JIRA.ISSUE_CONTENT.STORY_POINTS | translate }} {{ issue?.storyPoints }}
{{ T.F.JIRA.ISSUE_CONTENT.ASSIGNEE | translate }} {{ issue?.assignee?.displayName || '–' }}
{{ T.F.JIRA.ISSUE_CONTENT.WORKLOG | translate }} {{ issue?.timespent * 1000 | msToString }} / {{ issue?.timeestimate * 1000 | msToString }}
{{ T.F.JIRA.ISSUE_CONTENT.SUB_TASKS | translate }}
{{ T.F.JIRA.ISSUE_CONTENT.RELATED | translate }}
{{ T.F.JIRA.ISSUE_CONTENT.COMPONENTS | translate }} @for (component of issue?.components; track trackByIndex($index, component)) { {{ component.name }} }
{{ T.F.JIRA.ISSUE_CONTENT.DESCRIPTION | translate }} @if (description) {
}
{{ T.F.JIRA.ISSUE_CONTENT.COMMENTS | translate }} @for ( comment of issue?.comments | sort: 'created'; track trackByIndex($index, comment) ) {
{{ comment.author.displayName }} {{ T.F.JIRA.ISSUE_CONTENT.AT | translate }} {{ comment.created | date: 'short' }}
@if (comment.body) {
}
} textsms {{ T.F.JIRA.ISSUE_CONTENT.WRITE_A_COMMENT | translate }}