Skip to content

Commit

Permalink
adapt string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
vscaiceanu-1a committed Oct 18, 2023
1 parent 5de24cb commit 47dfea1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/templates/prefetch.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

var language = '{LANG}';
var languageKey = 'LANG';
var locPattern = '{{{localizationPattern}}}';
var locPattern = `{{{localizationPattern}}}`;
if (language !== `{${languageKey}}`) {
resList.push(`${locPattern}`);
resList.push(locPattern);
}

var dynamicContentPath = '{DYNAMIC_CONTENT_PATH}';
Expand Down
4 changes: 2 additions & 2 deletions src/templates/prefetch.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

var language = '{LANG}';
var languageKey = 'LANG';
var locPattern = '{{{localizationPattern}}}';
var locPattern = `{{{localizationPattern}}}`;
if (language !== `{${languageKey}}`) {
resList.push(`${locPattern}`);
resList.push(locPattern);
}

var dynamicContentPath = '{DYNAMIC_CONTENT_PATH}';
Expand Down

0 comments on commit 47dfea1

Please sign in to comment.