Migrate templates to self-closing tags

Automated conversion with:

    ng generate @angular/core:self-closing-tag
This commit is contained in:
Alexander Brandon Coles
2025-09-12 23:47:00 +01:00
parent 9e93d5b131
commit 718b07cf19
215 changed files with 659 additions and 1005 deletions
@@ -234,8 +234,7 @@ On the example of a work package, this following code snippet would create an ed
```html
@if (workPackage) {
<edit-form [resource]="workPackage">
<op-editable-attribute-field [resource]="workPackage" fieldName="subject">
</op-editable-attribute-field>
<op-editable-attribute-field [resource]="workPackage" fieldName="subject"/>
</edit-form>
}
```