mirror of
https://github.com/ajnart/homarr.git
synced 2026-03-06 20:30:57 +01:00
Merge pull request #292 from arghyadipchak/master
Fix Dash. compact view storage
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
export const REPO_URL = 'ajnart/homarr';
|
||||
export const CURRENT_VERSION = 'v0.7.2';
|
||||
export const CURRENT_VERSION = 'v0.8.0';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "homarr",
|
||||
"version": "0.7.2",
|
||||
"version": "0.8.0",
|
||||
"description": "Homarr - A homepage for your server.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -181,7 +181,7 @@ export function DashdotComponent() {
|
||||
<div className={classes.tableRow}>
|
||||
<p className={classes.tableLabel}>Storage:</p>
|
||||
<p className={classes.tableValue}>
|
||||
{(totalUsed / (totalSize || 1)).toFixed(1)}%{'\n'}
|
||||
{(100 * totalUsed / (totalSize || 1)).toFixed(1)}%{'\n'}
|
||||
{bytePrettyPrint(totalUsed)} / {bytePrettyPrint(totalSize)}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user