Remove nextcloud shares block

pull/1010/head
shamoon 1 year ago
parent ed96c46fa5
commit ad6eeaaf75

@ -494,7 +494,6 @@
"cpuload": "Cpu Load",
"memoryusage": "Memory Usage",
"freespace": "Free Space",
"activeusers": "Active Users",
"shares": "Shares"
"activeusers": "Active Users"
}
}

@ -21,7 +21,6 @@ export default function Component({ service }) {
<Block label="nextcloud.memoryusage" />
<Block label="nextcloud.freespace" />
<Block label="nextcloud.activeusers" />
<Block label="nextcloud.shares" />
</Container>
);
}
@ -35,7 +34,6 @@ export default function Component({ service }) {
<Block label="nextcloud.memoryusage" value={t("common.percent", { value:memoryUsage })} />
<Block label="nextcloud.freespace" value={t("common.bbytes", { value: nextcloudInfo.system.freespace, maximumFractionDigits: 1 })} />
<Block label="nextcloud.activeusers" value={t("common.number", { value: nextcloudData.ocs.data.activeUsers.last5minutes })} />
<Block label="nextcloud.shares" value={t("common.number", { value: nextcloudInfo.shares.num_shares })} />
</Container>
);
}

Loading…
Cancel
Save