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-version/display-version.directive.html

18 lines
659 B

<div class="version-wrapper">
<span ng-if="!field.text"
wp-accessible-attribute="field">
{{field.placeholder}}
</span>
<span ng-if="field.text && customEditorController.isVersionLinkViewable()">
<a ng-href="{{ customEditorController.getVersionLink() }}"
aria-label="{{ field.getKeyValue() }}"
title="{{ field.text.props.name }}">
{{field.text.props.name}}
</a>
</span>
<span ng-if="field.text && !customEditorController.isVersionLinkViewable()"
wp-accessible-attribute="field"
title="{{ field.text.props.name }}">
{{field.text.props.name}}
</span>
</div>