This commit is contained in:
Chris Wanstrath 2025-09-28 16:32:12 -07:00
parent 960f92b829
commit 9dded30417

View File

@ -68,7 +68,7 @@ export function addOutput(id: string, output: CommandOutput) {
}
export function addErrorMessage(message: string) {
addOutput("", { html: `< span class= "red" > ${message} </span>` })
addOutput("", { html: `<span class="red">${message}</span>` })
}