aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/server/volume_server_ui/templates.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/server/volume_server_ui/templates.go b/weed/server/volume_server_ui/templates.go
index ac2a2bf69..1c1394369 100644
--- a/weed/server/volume_server_ui/templates.go
+++ b/weed/server/volume_server_ui/templates.go
@@ -83,7 +83,7 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`<!DOC
<th>Path</th>
<th>Total</th>
<th>Free</th>
- <th>% Usage</th>
+ <th>Usage</th>
</tr>
</thead>
<tbody>
@@ -92,7 +92,7 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`<!DOC
<td>{{ .Dir }}</td>
<td>{{ bytesToHumanReadble .All }}</td>
<td>{{ bytesToHumanReadble .Free }}</td>
- <td>{{ percentFrom .All .Used}}</td>
+ <td>{{ percentFrom .All .Used}}%</td>
</tr>
{{ end }}
</tbody>