Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client-src/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ function show(messages, type) {
const entryElement = document.createElement("div");
const typeElement = document.createElement("span");

typeElement.innerText = type === "warnings" ? "Warning:" : "Error:";
typeElement.innerText =
(type === "warnings" ? "Warning:" : "Error:") + message.file || "";
Comment thread
githoniel marked this conversation as resolved.
Outdated
typeElement.style.color = `#${colors.red}`;

// Make it look similar to our terminal.
Expand Down