Skip to content

Commit 0bacd07

Browse files
committed
fixing a busy dialog message template error
1 parent 10e95b0 commit 0bacd07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webui/src/js/utils/k8s-domain-deployer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function (K8sDomainActionsBase, project, wktConsole, i18n, projectIo, dialogHelp
8484
const operatorName = this.project.wko.wkoDeployName.value;
8585
const operatorNamespace = this.project.wko.k8sNamespace.value;
8686
busyDialogMessage = i18n.t('flow-checking-operator-installed-in-progress',
87-
{operatorName: operatorName, Namespace: operatorNamespace});
87+
{operatorName: operatorName, operatorNamespace: operatorNamespace});
8888
dialogHelper.updateBusyDialog(busyDialogMessage, 4 / totalSteps);
8989
if (!options.skipCheckOperatorAlreadyInstalled) {
9090
if (! await this.checkOperatorIsInstalled(kubectlExe, kubectlOptions, operatorName, operatorNamespace, errTitle)) {

0 commit comments

Comments
 (0)