fixed missing value for the jsrender_generator.ts

canary
WolverinDEV 2020-08-01 15:19:09 +02:00
parent 65ede2c6ab
commit f7aec1ebfa
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ export function generate(config: Configuration, file: File) : TranslationEntry[]
filename: file.name,
character: character + 1,
line: line + 1,
message: message
message: message,
type: "js-template"
});
base_index += match.index + match[0].length;