Removed web app connection string from postgres and miaa. Remove '!' (#13323)

This commit is contained in:
nasc17
2020-11-09 17:15:17 -08:00
committed by GitHub
parent 8cf5e4c9fd
commit 689c7ab27e
3 changed files with 7 additions and 9 deletions

View File

@@ -202,7 +202,7 @@ export class PostgresComputeAndStoragePage extends DashboardPage {
}).component();
this.disposables.push(
this.workerBox!.onTextChanged(() => {
this.workerBox.onTextChanged(() => {
if (!(this.handleOnTextChanged(this.workerBox!))) {
this.saveArgs.workers = undefined;
} else {
@@ -219,7 +219,7 @@ export class PostgresComputeAndStoragePage extends DashboardPage {
}).component();
this.disposables.push(
this.coresLimitBox!.onTextChanged(() => {
this.coresLimitBox.onTextChanged(() => {
if (!(this.handleOnTextChanged(this.coresLimitBox!))) {
this.saveArgs.coresLimit = undefined;
} else {
@@ -236,7 +236,7 @@ export class PostgresComputeAndStoragePage extends DashboardPage {
}).component();
this.disposables.push(
this.coresRequestBox!.onTextChanged(() => {
this.coresRequestBox.onTextChanged(() => {
if (!(this.handleOnTextChanged(this.coresRequestBox!))) {
this.saveArgs.coresRequest = undefined;
} else {
@@ -253,7 +253,7 @@ export class PostgresComputeAndStoragePage extends DashboardPage {
}).component();
this.disposables.push(
this.memoryLimitBox!.onTextChanged(() => {
this.memoryLimitBox.onTextChanged(() => {
if (!(this.handleOnTextChanged(this.memoryLimitBox!))) {
this.saveArgs.memoryLimit = undefined;
} else {
@@ -270,7 +270,7 @@ export class PostgresComputeAndStoragePage extends DashboardPage {
}).component();
this.disposables.push(
this.memoryRequestBox!.onTextChanged(() => {
this.memoryRequestBox.onTextChanged(() => {
if (!(this.handleOnTextChanged(this.memoryRequestBox!))) {
this.saveArgs.memoryRequest = undefined;
} else {