fix linting issues

This commit is contained in:
Arthur Lu 2023-10-11 20:50:10 +00:00
parent 63f3aae9e6
commit 9705470798
2 changed files with 16 additions and 16 deletions

View File

@ -83,7 +83,7 @@ function createResourceUsageChart (container, resourceName, resourceAvail, resou
}]
},
breakpoint: 680
}
};
chart.style = "margin: 10px;";
}

View File

@ -55,8 +55,8 @@ class ResourceChart extends HTMLElement {
}
set data (data) {
for (let line of data.title) {
this.caption.innerHTML += `<span>${line}</span>`
for (const line of data.title) {
this.caption.innerHTML += `<span>${line}</span>`;
}
this.canvas.role = "img";
@ -87,9 +87,9 @@ class ResourceChart extends HTMLElement {
else {
updateTooltipShow(e.chart, true);
}
},
},
}
}
};
this.chart = createChart(this.canvas, chartData);
@ -107,7 +107,7 @@ class ResourceChart extends HTMLElement {
}
function createChart (ctx, data) {
return new Chart(ctx, data);
return new window.Chart(ctx, data);
}
// this is a really bad way to do this, but chartjs api does not expose many ways to dynamically set hover and tooltip options