Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_issue_estimate.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c49bf626f4e0a5d568556f1a9ef56c986389c750 (plain)
1
2
3
4
5
6
7
- issue = local_assigns.fetch(:issue)

- if issue.time_estimate > 0
  %span.issuable-estimate.d-none.d-sm-inline-block.has-tooltip{ data: { container: 'body', qa_selector: 'issuable_estimate' }, title: _('Estimate') }
     
    = sprite_icon('timer', css_class: 'issue-estimate-icon')
    = Gitlab::TimeTrackingFormatter.output(issue.time_estimate)