This is an automated email from the ASF dual-hosted git repository. ytykhun pushed a commit to branch DATALAB-2469 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 8af28552873bcb7ac35ecaa857c5d4f193bb831a Author: Yurii Tykhun <[email protected]> AuthorDate: Tue Jul 6 11:20:01 2021 +0300 [DATALAB-2469] added hint for gpu tag --- .../src/app/resources/resources-grid/resources-grid.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.html index e89d888..026dccd 100644 --- a/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.html @@ -158,7 +158,7 @@ <mat-chip matTooltip="Project tag: {{ element.tags.project_tag }}" matTooltipPosition="above" class="ellipsis"> {{ element.tags.project_tag }} </mat-chip> - <mat-chip *ngIf="element.tags.gpu_tag"> + <mat-chip *ngIf="element.tags.gpu_tag" matTooltip="GPU tag: {{element.tags.gpu_tag?.toUpperCase()}}" matTooltipPosition="above" class="ellipsis"> {{ element.tags.gpu_tag?.toUpperCase() }} </mat-chip> </mat-chip-list> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
