Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 89e8b82

Browse files
Cleaning ui in Bot Fwk Inspector
1 parent 3b87052 commit 89e8b82

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Plugins/Vorlon/plugins/botFrameworkInspector/vorlon.botFrameworkInspector.dashboard.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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>";

0 commit comments

Comments
 (0)