add placeholder for container username/password input box (#4210)

* add placeholder for container username/password input box

* spacing
This commit is contained in:
Alan Ren
2019-02-26 15:19:36 -08:00
committed by GitHub
parent e37533afbb
commit b11a8e9c0c
2 changed files with 97 additions and 22 deletions

View File

@@ -91,7 +91,7 @@ export class CreateClusterModel {
setTimeout(() => {
let tools = this.targetClusterType === TargetClusterType.ExistingKubernetesCluster ? [kubeCtl, mssqlCtl] : [kubeCtl, mssqlCtl, azureCli];
resolve(tools);
}, 3000);
}, 2000);
});
return promise;
}
@@ -101,7 +101,7 @@ export class CreateClusterModel {
setTimeout(() => {
this._tmp_tools_installed = true;
resolve();
}, 10000)
}, 2000);
});
return promise;
}