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/wp-edit/wp-edit-field/wp-edit-field.directive.html

25 lines
615 B

<div class="wp-edit-field"
ng-class="[
vm.errorenous && '-error' || '',
vm.isEditable && '-editable' || '',
vm.active && '-active' || '',
vm.fieldName,
vm.fieldType === 'wiki-textarea' ? '' : '-small'
]">
<form ng-if="vm.workPackage && vm.active"
name="vm.wpEditForm"
ng-submit="vm.submit()">
<label for="{{vm.htmlId}}"
class="hidden-for-sighted">
{{::vm.fieldLabel}}
</label>
<ng-include src="vm.field.template"></ng-include>
</form>
<ng-transclude class="-hidden-overflow" ng-hide="vm.active"></ng-transclude>
</div>