Skip to content

Commit

Permalink
fix(basic.gblib): Goto dialog within web.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Sep 13, 2021
1 parent 9797e46 commit 7abc079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/admin.gbapp/dialogs/AdminDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class AdminDialog extends IGBDialog {
async step => {
const locale: string = step.context.activity.locale;
// tslint:disable-next-line:no-unsafe-any
const text: string = step.result;
const text: string = step.context.activity['originalText'];
const cmdName = text.split(' ')[0];

await min.conversationalService.sendText(min, step, Messages[locale].working(cmdName));
Expand Down

0 comments on commit 7abc079

Please sign in to comment.