From cba4dd6e0722e08d4ae4da26566c19e504e75ea5 Mon Sep 17 00:00:00 2001 From: mukul-tyagi08 Date: Tue, 5 Nov 2024 13:13:12 +0530 Subject: [PATCH 1/3] fix: correct grammar in resources subtitle text --- .../src/management/api/resources/api-resources.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gravitee-apim-console-webui/src/management/api/resources/api-resources.component.html b/gravitee-apim-console-webui/src/management/api/resources/api-resources.component.html index bd32ec6d3c6..5b75d7e3e5f 100644 --- a/gravitee-apim-console-webui/src/management/api/resources/api-resources.component.html +++ b/gravitee-apim-console-webui/src/management/api/resources/api-resources.component.html @@ -21,8 +21,8 @@ API Resources 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.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.
From 72f97ab4d0e89a4ac05415c44e92837a758d281a Mon Sep 17 00:00:00 2001 From: mukul-tyagi08 Date: Tue, 5 Nov 2024 13:14:07 +0530 Subject: [PATCH 3/3] fix: add missing assignment operator to variable --- .../client-registration-provider.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gravitee-apim-console-webui/src/management/settings/client-registration-providers/client-registration-provider/client-registration-provider.component.ts b/gravitee-apim-console-webui/src/management/settings/client-registration-providers/client-registration-provider/client-registration-provider.component.ts index 89fb607a1cf..81a22131def 100644 --- a/gravitee-apim-console-webui/src/management/settings/client-registration-providers/client-registration-provider/client-registration-provider.component.ts +++ b/gravitee-apim-console-webui/src/management/settings/client-registration-providers/client-registration-provider/client-registration-provider.component.ts @@ -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;