This is an automated email from the ASF dual-hosted git repository. hshpak pushed a commit to branch feat/DATALAB-2881/filter-function-to-Images-page in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 82ce26ea5bfe5feec3f34782b08f786815cd5e4d Author: Hennadii_Shpak <[email protected]> AuthorDate: Wed Aug 3 16:11:50 2022 +0300 changed table message if no item found --- .../resources/webapp/src/app/resources/images/images.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html index c06456575..d14638da8 100644 --- a/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html @@ -285,7 +285,7 @@ <ng-container matColumnDef="placeholder"> <td mat-footer-cell *matFooterCellDef class="info" [colSpan]="displayedColumns.length - 1"> - <span> There are no images yet </span> + <span>{{ isFiltered ? 'No matches found' : 'There are no images yet' }}</span> </td> </ng-container> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
