Skip to content

Commit f2472b0

Browse files
lint: fix error when using double quotes
* linter says gimme single quotes
1 parent 474119d commit f2472b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/features/heatmap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default async function initHeatmap() {
1818
new View().$mount(el);
1919
} catch (err) {
2020
console.error(err);
21-
el.style.display = "flex";
21+
el.style.display = 'flex';
2222
el.textContent = 'Heatmap failed to load';
2323
}
2424
}

0 commit comments

Comments
 (0)