adjust UI

This commit is contained in:
Chris Lu 2020-02-23 22:00:19 -08:00
parent 69aeafec67
commit b06b7ca6e6

View file

@ -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>