This repository was archived by the owner on Jul 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Plugins/Vorlon/plugins/botFrameworkInspector Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ module VORLON {
146146 dialog . appendChild ( dialogDetail ) ;
147147
148148 var waterfallStepsLabel = document . createElement ( "p" ) ;
149- waterfallStepsLabel . innerText = "Waterfall steps : " ;
149+ waterfallStepsLabel . innerText = "Steps " ;
150150 dialogDetail . appendChild ( waterfallStepsLabel ) ;
151151
152152 var waterfallSteps = document . createElement ( "div" ) ;
@@ -208,7 +208,7 @@ module VORLON {
208208 dialogInStack . classList . add ( "dialog-in-stack" ) ;
209209 dialogInStack . innerText = dialog . id ;
210210 if ( dialog . state [ "BotBuilder.Data.WaterfallStep" ] != undefined )
211- dialogInStack . innerText += " (" + dialog . state [ "BotBuilder.Data.WaterfallStep" ] + ")" ;
211+ dialogInStack . innerText += "(" + ( dialog . state [ "BotBuilder.Data.WaterfallStep" ] + 1 ) + ")" ;
212212 dialogsInStack . appendChild ( dialogInStack ) ;
213213
214214 lineSeparator = document . createElement ( "div" ) ;
@@ -265,8 +265,6 @@ module VORLON {
265265
266266 dialogsInStack . appendChild ( eventType ) ;
267267
268- console . log ( botUserEntry . message ) ;
269-
270268 var userData = document . createElement ( "div" ) ;
271269 userData . classList . add ( this . _datacheckbox . checked ? "data" : "data-hidden" ) ;
272270 userData . innerHTML = "<p><strong>ConversationData:</strong> " + JSON . stringify ( dialogSessionInfo . conversationData ) + "</p>" ;
You can’t perform that action at this time.
0 commit comments