Browse Source

Strange compiler bug.

pull/282/head
Sebastian Stehle 8 years ago
parent
commit
bc45cd7f1d
  1. 8
      src/Squidex/app/features/content/pages/content/content-field.component.html

8
src/Squidex/app/features/content/pages/content/content-field.component.html

@ -116,7 +116,9 @@
</div>
</div>
<small class="form-text text-muted" *ngIf="field.properties['hints'] && field.properties['hints'].length > 0">
{{field.properties['hints']}}
</small>
<ng-container *ngIf="field.properties['hints']; let hints">
<small class="form-text text-muted" *ngIf="hints.length > 0">
{{hints}}
</small>
</ng-container>
</div>

Loading…
Cancel
Save