Skip to content

Commit

Permalink
fix(platform): colon when no description is present for popping colum…
Browse files Browse the repository at this point in the history
…ns (#12981)

* fix(platform): aria-label for vhd clear button

* fix(platform): colon when no description is present for popping columns

---------

Co-authored-by: deno <mladen.droshev@sap.com>
  • Loading branch information
mikerodonnell89 and droshev authored Feb 4, 2025
1 parent dd4612e commit 7bc90e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
>
@for (poppingColumn of _fdpTableService.poppingColumns$(); track poppingColumn.name) {
<div fd-table-text>
<label fd-form-label>{{ poppingColumn.label }}:</label>
@if (poppingColumn?.label?.length) {
<label fd-form-label>{{ poppingColumn.label }}:</label>
}

@if (poppingColumn?.columnCellTemplate) {
<ng-template
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
fdType="transparent"
[title]="'platformVHD.footerClearSelectedTitle' | fdTranslate"
glyph="decline"
[attr.aria-label]="'platformVHD.footerClearSelectedAriaLabel' | fdTranslate"
[ariaLabel]="'platformVHD.footerClearSelectedAriaLabel' | fdTranslate"
></button>
</div>
</div>
Expand Down

0 comments on commit 7bc90e0

Please sign in to comment.