Skip to content

Commit fc57d29

Browse files
committed
Update CustomTabPage.cs
1 parent 033dc1b commit fc57d29

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Virtual_EDW/CustomTabPage.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -595,13 +595,12 @@ private void GenerateFromTemplate()
595595
{
596596
// Compile the template, and merge it with the metadata.
597597
var template = Handlebars.Compile(localRichTextBoxGenerationTemplate.Text);
598+
var result = template(dataObjectMappingList);
598599

599600
//string jsonInput = File.ReadAllText(dataObjectMappingList.metadataFileName);
600-
601-
var jsonInput = System.Text.Json.JsonSerializer.Serialize(dataObjectMappingList);
602-
JsonNode deserializedMapping = System.Text.Json.JsonSerializer.Deserialize<JsonNode>(jsonInput);
603-
604-
var result = template(deserializedMapping);
601+
//var jsonInput = System.Text.Json.JsonSerializer.Serialize(dataObjectMappingList);
602+
//JsonNode deserializedMapping = System.Text.Json.JsonSerializer.Deserialize<JsonNode>(jsonInput);
603+
//var result = template(deserializedMapping);
605604

606605
// Check if the metadata needs to be displayed.
607606
if (DisplayJsonFlag)

0 commit comments

Comments
 (0)