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 be022f5 commit e3c07f4
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 @@ -168,7 +168,7 @@ export class AdminDialog extends IGBDialog {
await GBAdminService.undeployPackageCommand(text, min);
await min.conversationalService.sendText(min, step, 'Package *undeployed*.');
return await step.replaceDialog('/admin', { firstRun: false });
} else if (cmdName === 'rebuildIndex' || cmdName === 'ri') {
} else if (cmdName === 'rebuildIndex' || cmdName === 'ri' || cmdName === 'Ri') {
await GBAdminService.rebuildIndexPackageCommand(min, deployer);

return await step.replaceDialog('/admin', { firstRun: false });
Expand Down

0 comments on commit e3c07f4

Please sign in to comment.