OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/components/inplace-edit/field-directives/display-spent-time/display-spent-time.directiv...

18 lines
548 B

<div class="spent-time-wrapper">
<span ng-if="field.isEmpty()"
wp-accessible-attribute="field">
{{ field.placeholder }}
</span>
<span ng-if="!field.isEmpty()">
<span ng-if="customEditorController.isLinkViewable()">
<a ng-href="{{ customEditorController.getPath() }}"
aria-label="{{ field.getKeyValue() }}">
{{ field.text }}
</a>
</span>
<span ng-if="!customEditorController.isLinkViewable()"
wp-accessible-attribute="field">
{{ field.text }}
</span>
</span>
</div>