Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Fix for issues with definition list in repeaters (#1919)
Browse files Browse the repository at this point in the history
Resolves #967
  • Loading branch information
Blackbaud-TrevorBurch authored Aug 18, 2018
1 parent 19559a6 commit b7fd445
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<span #valueEl>
<ng-content></ng-content>
</span>
<span class="sky-deemphasized" *ngIf="!valueEl.innerText.trim()">
<span class="sky-deemphasized" *ngIf="!valueEl.textContent.trim()">
{{ (service.defaultValue | async) || ('definition_list_none_found' | skyResources) }}
</span>
</div>

0 comments on commit b7fd445

Please sign in to comment.