Merge pull request #3299 from lvuch/lh-0821

lb and volumes empty table message 22215
This commit is contained in:
Vincent Fiduccia 2019-08-27 13:27:06 -07:00 committed by GitHub
commit 15f9ee25b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -68,6 +68,12 @@
{{namespace-group model=inst.ref fullColspan=sortable.fullColspan}}
{{else if (eq kind "nomatch")}}
<tr><td colspan="{{sortable.fullColspan}}" class="text-center text-muted lacsso pt-20 pb-20">{{t 'ingressPage.table.noMatch'}}</td></tr>
{{else if (eq kind "norows")}}
<tr>
<td colspan="{{sortable.fullColspan}}" class="text-center text-muted lacsso pt-20 pb-20">
{{t "ingressPage.table.noData"}}
</td>
</tr>
{{/if}}
{{/sortable-table}}
</section>

View File

@ -58,6 +58,12 @@
{{namespace-group model=obj.ref fullColspan=sortable.fullColspan}}
{{else if (eq kind "nomatch")}}
<tr><td colspan="{{sortable.fullColspan}}" class="text-center text-muted lacsso pt-20 pb-20">{{t 'volumesPage.noMatch'}}</td></tr>
{{else if (eq kind "norows")}}
<tr>
<td colspan="{{sortable.fullColspan}}" class="text-center text-muted lacsso pt-20 pb-20">
{{t "volumesPage.noData"}}
</td>
</tr>
{{/if}}
{{/sortable-table}}
</section>