Skip to content

Commit

Permalink
Merge pull request #20005 from abpframework/issue/19972
Browse files Browse the repository at this point in the history
Update extensible-form-prop.component.html
  • Loading branch information
sumeyyeKurtulus authored Jun 10, 2024
2 parents 9e6b2a2 + aa70d16 commit e7ff549
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,11 @@
@if (prop.displayTextResolver) {
{{ prop.displayTextResolver(data) | abpLocalization }}
} @else {
{{ prop.displayName | abpLocalization }}
@if (prop.isExtra) {
{{ '::' + prop.displayName | abpLocalization }}
} @else {
{{ prop.displayName | abpLocalization }}
}
}
{{ asterisk }}
@if (prop.tooltip) {
Expand All @@ -173,4 +177,4 @@
></i>
}
</label>
</ng-template>
</ng-template>

0 comments on commit e7ff549

Please sign in to comment.