Skip to content

Commit 3b6e695

Browse files
committed
Make empty msg for stateful sets consistant with other ones
1 parent c9474fc commit 3b6e695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/browse/stateful-sets.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1>
4343
</thead>
4444
<tbody ng-if="(statefulSets | hashSize) == 0">
4545
<tr>
46-
<td colspan="3"><em>No stateful sets</em></td>
46+
<td colspan="3"><em>No stateful sets to show</em></td>
4747
</tr>
4848
</tbody>
4949
<tbody ng-repeat="(statefulSetName, statefulSet) in statefulSets">

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4230,7 +4230,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
42304230
"</thead>\n" +
42314231
"<tbody ng-if=\"(statefulSets | hashSize) == 0\">\n" +
42324232
"<tr>\n" +
4233-
"<td colspan=\"3\"><em>No stateful sets</em></td>\n" +
4233+
"<td colspan=\"3\"><em>No stateful sets to show</em></td>\n" +
42344234
"</tr>\n" +
42354235
"</tbody>\n" +
42364236
"<tbody ng-repeat=\"(statefulSetName, statefulSet) in statefulSets\">\n" +

0 commit comments

Comments
 (0)