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>Path</th>
<th>Total</th> <th>Total</th>
<th>Free</th> <th>Free</th>
<th>% Usage</th> <th>Usage</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -92,7 +92,7 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`<!DOC
<td>{{ .Dir }}</td> <td>{{ .Dir }}</td>
<td>{{ bytesToHumanReadble .All }}</td> <td>{{ bytesToHumanReadble .All }}</td>
<td>{{ bytesToHumanReadble .Free }}</td> <td>{{ bytesToHumanReadble .Free }}</td>
<td>{{ percentFrom .All .Used}}</td> <td>{{ percentFrom .All .Used}}%</td>
</tr> </tr>
{{ end }} {{ end }}
</tbody> </tbody>