forked from MapComplete/MapComplete
Add glutenfree theme, fix #2031, some other improvements to fix output
This commit is contained in:
parent
29ee4ae155
commit
f4fc954564
8 changed files with 41 additions and 16 deletions
|
@ -124,9 +124,9 @@ export class ConversionContext {
|
|||
this.messages.push({ context: this, level: "warning", message })
|
||||
}
|
||||
|
||||
err(message: string) {
|
||||
err(...message: string[]) {
|
||||
this._hasErrors = true
|
||||
this.messages.push({ context: this, level: "error", message })
|
||||
this.messages.push({ context: this, level: "error", message: message.join(" ") })
|
||||
}
|
||||
|
||||
info(message: string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue