Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Fix for metrics connection bug #3036

Merged
merged 1 commit into from
Sep 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h2 mat-dialog-title>
<div *ngIf="endpointForm.value.authType === 'sso'" formGroupName="authValues" class="connection-dialog__auth">
<p>You will be redirected to the Single Sign-On UI for this endpoint and returned to Stratos upon completion.</p>
</div>
<mat-checkbox *ngIf="canShareEndpointToken" class="connection-dialog__shared" matInput name="systemShared" formControlName="systemShared">Share this endpoint connection with other users</mat-checkbox>
<mat-checkbox *ngIf="canShareEndpointToken" class="connection-dialog__shared" matInput name="systemShared" formControlName="systemShared">Share this endpoint connection</mat-checkbox>
</mat-dialog-content>
<app-dialog-error message="Could not connect, please try again." [show]="connectingError$ | async"></app-dialog-error>
<mat-dialog-actions class="connection-dialog__actions">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ export class CreateEndpointCfStep1Component implements IStepperStep, AfterConten
this.nameField.value,
this.urlField.value,
!!this.skipSllField.value,
this.clientIDField.value,
this.clientSecretField.value,
!!this.ssoAllowedField.value,
this.clientIDField ? this.clientIDField.value : '',
this.clientSecretField ? this.clientSecretField.value : '',
this.ssoAllowedField ? !!this.ssoAllowedField.value : false,
);

this.store.dispatch(action);
Expand Down