Skip to content

Commit 6feccca

Browse files
committed
Fix spacing before toLowerCase call
1 parent 587a33b commit 6feccca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

janus-dashboard/src/lib/StreamChart.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
const val = Number(cleanValStr);
182182
183183
if (!isNaN(val)) {
184-
const cleanSource = source ? source.trim().toLowerCase() : "";
184+
const cleanSource = source ? source.trim() .toLowerCase() : "";
185185
const point = { time: timestamp, value: val };
186186
187187
if (cleanSource === "historical") {

0 commit comments

Comments
 (0)