We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c9e73c commit 83d9092Copy full SHA for 83d9092
1 file changed
hadoop-ozone/ozone-manager/src/main/resources/webapps/ozoneManager/om-snapshots.html
@@ -54,7 +54,9 @@ <h1>Snapshots</h1>
54
<tbody>
55
<tr ng-repeat="snapshot in $ctrl.snapshots">
56
<td>{{snapshot.name}}</td>
57
- <td title="{{snapshot.snapshotStatus === 'SNAPSHOT_ACTIVE' ? 'active' : 'deletion in progress'}}">{{snapshot.snapshotStatus}}</td>
+ <td title="{{snapshot.snapshotStatus === 'SNAPSHOT_ACTIVE' ? 'active' : 'deletion in progress'}}">
58
+ {{snapshot.snapshotStatus === 'SNAPSHOT_ACTIVE' ? 'active' : 'deletion in progress'}}
59
+ </td>
60
<td>{{snapshot.creationTime | date:'yyyy-MM-dd HH:mm:ss'}}</td>
61
<td>{{$ctrl.formatBytes(snapshot.referencedSize)}}</td>
62
<td>{{$ctrl.formatBytes(snapshot.exclusiveSize)}}</td>
0 commit comments