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 REPO_URL = 'ajnart/homarr';
|
||||||
export const CURRENT_VERSION = 'v0.7.2';
|
export const CURRENT_VERSION = 'v0.8.0';
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "homarr",
|
"name": "homarr",
|
||||||
"version": "0.7.2",
|
"version": "0.8.0",
|
||||||
"description": "Homarr - A homepage for your server.",
|
"description": "Homarr - A homepage for your server.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export function DashdotComponent() {
|
|||||||
<div className={classes.tableRow}>
|
<div className={classes.tableRow}>
|
||||||
<p className={classes.tableLabel}>Storage:</p>
|
<p className={classes.tableLabel}>Storage:</p>
|
||||||
<p className={classes.tableValue}>
|
<p className={classes.tableValue}>
|
||||||
{(totalUsed / (totalSize || 1)).toFixed(1)}%{'\n'}
|
{(100 * totalUsed / (totalSize || 1)).toFixed(1)}%{'\n'}
|
||||||
{bytePrettyPrint(totalUsed)} / {bytePrettyPrint(totalSize)}
|
{bytePrettyPrint(totalUsed)} / {bytePrettyPrint(totalSize)}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user