mirror of https://github.com/rancher/ui.git
Merge pull request #3299 from lvuch/lh-0821
lb and volumes empty table message 22215
This commit is contained in:
commit
15f9ee25b0
|
|
@ -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>
|
||||
|
|
@ -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>
|
||||
Loading…
Reference in New Issue