Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

APIM-7405: fix display grammar and assignment issues #9786

Open
wants to merge 3 commits into
base: 4.5.x
Choose a base branch
from
Open
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 @@ -85,7 +85,7 @@
<mat-form-field>
<mat-label>Request phase condition</mat-label>
<input matInput formControlName="condition" />
<mat-hint> Support EL (e.g: &#123; #request.headers['Content-Type'][0] === 'application/json' &#125;)</mat-hint>
<mat-hint> Support EL (e.g: &#123; #request.headers['Content-Type'][0] == 'application/json' &#125;)</mat-hint>
</mat-form-field>
</div>
</mat-card-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<mat-card-header>
<mat-card-title>API Resources</mat-card-title>
<mat-card-subtitle
>Resources are link to the API lifecycle. They are initialized when the API is starting and released when API is stopped. Resources
are used via the API policies to enhance API behavior.</mat-card-subtitle
>Resources are linked to the API lifecycle. They are initialized when the API is starting and released when API is stopped.
Resources are used via the API policies to enhance API behavior.</mat-card-subtitle
>
<div class="headerRightBtn" *gioPermission="{ anyOf: ['api-definition-c'] }">
<button *ngIf="!apiResourceDS.isReadOnly" mat-raised-button color="primary" (click)="addResource()">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class ClientRegistrationProviderComponent implements OnInit, OnDestroy {
},
];
public renewClientSecretMethods = ['POST', 'PATCH', 'PUT'];
public renewClientSecretEndpointUrlExample: 'https://authorization_server/oidc/dcr/{#client_id}/renew_secret';
public renewClientSecretEndpointUrlExample: string = 'https://authorization_server/oidc/dcr/{#client_id}/renew_secret';

public formInitialValues: unknown;

Expand Down