| {{ T.F.GITLAB.ISSUE_CONTENT.SUMMARY | translate }} |
{{ issue?.title }} #{{ issue?.number }}
|
| {{ T.F.GITLAB.ISSUE_CONTENT.STATUS | translate }} |
{{ issue?.state }} |
@if (issue?.assignee?.web_url) {
| {{ T.F.GITLAB.ISSUE_CONTENT.ASSIGNEE | translate }} |
{{ issue?.assignee?.username }}
|
}
@if (issue?.labels?.length) {
| {{ T.F.GITLAB.ISSUE_CONTENT.LABELS | translate }} |
@for (label of issue?.labels; track label) {
{{ label }}
}
|
}
@if (issue?.body) {
| {{ T.F.GITLAB.ISSUE_CONTENT.DESCRIPTION | translate }} |
|
}
@if (issue?.comments) {
@for (
comment of issue?.comments | sort: 'created_at';
track trackByIndex($index, comment)
) {
}
}