Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/596e5c9b846f92ca2435201e67d69c56e76b7b63 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix glances fs metric for disks with colon ()

pull/2178/head
shamoon 2 years ago committed by GitHub
parent 7ea1d0dd47
commit 596e5c9b84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ export default function Component({ service }) {
const { t } = useTranslation();
const { widget } = service;
const { chart } = widget;
const [, fsName] = widget.metric.split(':');
const [, fsName] = widget.metric.split('fs:');
const { data, error } = useWidgetAPI(widget, 'fs', {
refreshInterval: 1000,

Loading…
Cancel
Save