We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84df3d4 commit ef089e8Copy full SHA for ef089e8
client-src/overlay.js
@@ -131,7 +131,8 @@ function show(messages, type) {
131
const entryElement = document.createElement("div");
132
const typeElement = document.createElement("span");
133
134
- typeElement.innerText = type === "warnings" ? "Warning:" : "Error:";
+ typeElement.innerText =
135
+ (type === "warnings" ? "Warning:" : "Error:") + message.file || "";
136
typeElement.style.color = `#${colors.red}`;
137
138
// Make it look similar to our terminal.
0 commit comments