From 252b1f39d797beaf608bc027441859a4c36c8e8e Mon Sep 17 00:00:00 2001 From: Tom Lake Date: Tue, 14 Sep 2021 10:36:22 -0700 Subject: [PATCH] Update DynamicInsight.cs Fixing coding bugs in code. --- .../Models/ResponseExtensions/DynamicInsight.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Diagnostics.ModelsAndUtils/Models/ResponseExtensions/DynamicInsight.cs b/src/Diagnostics.ModelsAndUtils/Models/ResponseExtensions/DynamicInsight.cs index 19c87117f..9e58fc15b 100644 --- a/src/Diagnostics.ModelsAndUtils/Models/ResponseExtensions/DynamicInsight.cs +++ b/src/Diagnostics.ModelsAndUtils/Models/ResponseExtensions/DynamicInsight.cs @@ -75,9 +75,9 @@ public static partial class ResponseInsightsExtension /// public async static Task]]> Run(DataProviders dp, OperationContext cxt, Response res) /// { /// var diagnosticData = new DiagnosticData { - /// Table = table //This is where you would execute kusto query + /// Table = table, //This is where you would execute kusto query /// RenderingProperties = new TimeSeriesRendering() - /// } + /// }; /// /// DynamicInsight insight = new DynamicInsight(InsightStatus.Critical, "This insight will expand to show a graph", diagnosticData); ///