fixed missing value for the jsrender_generator.ts
This commit is contained in:
parent
65ede2c6ab
commit
f7aec1ebfa
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ export function generate(config: Configuration, file: File) : TranslationEntry[]
|
||||||
filename: file.name,
|
filename: file.name,
|
||||||
character: character + 1,
|
character: character + 1,
|
||||||
line: line + 1,
|
line: line + 1,
|
||||||
message: message
|
message: message,
|
||||||
|
type: "js-template"
|
||||||
});
|
});
|
||||||
|
|
||||||
base_index += match.index + match[0].length;
|
base_index += match.index + match[0].length;
|
||||||
|
|
Loading…
Add table
Reference in a new issue