Skip to content

Commit 3f273ec

Browse files
devvaannshabose
authored andcommitted
fix: strings in html not appearing
1 parent 65c5cc8 commit 3f273ec

File tree

1 file changed

+1
-1
lines changed
  • src/extensionsIntegrated/CustomSnippets

1 file changed

+1
-1
lines changed

src/extensionsIntegrated/CustomSnippets/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ define(function (require, exports, module) {
259259
AppInit.appReady(function () {
260260
CommandManager.register(MENU_ITEM_NAME, MY_COMMAND_ID, showCustomSnippetsPanel);
261261
// Render template with localized strings
262-
const renderedHtml = Mustache.render(snippetsPanelTpl);
262+
const renderedHtml = Mustache.render(snippetsPanelTpl, {Strings: Strings});
263263
$snippetsPanel = $(renderedHtml);
264264
_addToMenu();
265265
CodeHintIntegration.init();

0 commit comments

Comments
 (0)