fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 462297dc75 - Show all commits

View file

@ -408,7 +408,7 @@ export class AdminDialog extends IGBDialog {
if (step.activeDialog.state.tokenName) { if (step.activeDialog.state.tokenName) {
return await step.next(step.options); return await step.next(step.options);
} }
step.activeDialog.state.authenticatorTenant = step.result; step.activeDialog.state.authenticatorTenant = step.context.activity['originalText'];
const locale = step.context.activity.locale; const locale = step.context.activity.locale;
const prompt = Messages[locale].enter_authenticator_authority_host_url; const prompt = Messages[locale].enter_authenticator_authority_host_url;
@ -416,7 +416,7 @@ export class AdminDialog extends IGBDialog {
}, },
async step => { async step => {
step.activeDialog.state.authenticatorAuthorityHostUrl = step.result; step.activeDialog.state.authenticatorAuthorityHostUrl = step.context.activity['originalText'];
const tokenName = step.activeDialog.state.tokenName; const tokenName = step.activeDialog.state.tokenName;