This is an automated email from the ASF dual-hosted git repository. dominikriemer pushed a commit to branch add-resource-dtos in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 4989dc328e9b945a2fc633ba0ed7a2956212d640 Author: Dominik Riemer <[email protected]> AuthorDate: Fri Jun 12 22:03:30 2026 +0200 Only show chart icon --- .../chart-overview-table.component.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html b/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html index c12569b4d2..6c0803791f 100644 --- a/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html +++ b/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html @@ -79,15 +79,14 @@ {{ 'Type' | translate }} </th> <td mat-cell *matCellDef="let element"> - <div fxLayout="row" fxLayoutGap="15px" class="text-sm"> - <span fxLayoutAlign="start center" - ><mat-icon>{{ - getChartTypeIcon(element) - }}</mat-icon></span - > - <span fxFlex fxLayoutAlign="start center">{{ - getChartTypeName(element) - }}</span> + <div + fxLayout="row" + fxLayoutAlign="start center" + class="text-sm" + > + <mat-icon [matTooltip]="getChartTypeName(element)">{{ + getChartTypeIcon(element) + }}</mat-icon> </div> </td> </ng-container>
