From ae60afd13815492728cb6026b822353552cd6c23 Mon Sep 17 00:00:00 2001 From: Lorenzo Date: Wed, 2 Oct 2024 15:51:38 +0200 Subject: [PATCH] fixes from review (part 1) * Add provider button text * Connected serivces page button color * italics text --- .../admin/AddConnectedServiceButton.tsx | 2 +- .../admin/ConnectedServicesSection.tsx | 24 ++++++------------- .../ConnectedServicesPage.tsx | 2 +- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/client/src/features/admin/AddConnectedServiceButton.tsx b/client/src/features/admin/AddConnectedServiceButton.tsx index 341d043d7..c67f851ba 100644 --- a/client/src/features/admin/AddConnectedServiceButton.tsx +++ b/client/src/features/admin/AddConnectedServiceButton.tsx @@ -49,7 +49,7 @@ export default function AddConnectedServiceButton() { <> diff --git a/client/src/features/admin/ConnectedServicesSection.tsx b/client/src/features/admin/ConnectedServicesSection.tsx index a0e5eaa6f..44eb8798b 100644 --- a/client/src/features/admin/ConnectedServicesSection.tsx +++ b/client/src/features/admin/ConnectedServicesSection.tsx @@ -130,27 +130,17 @@ function ConnectedService({ provider }: ConnectedServiceProps) { + ID: {provider.id} + Kind: {provider.kind} + URL: {provider.url} - ID: {provider.id} + Client ID: {provider.client_id} - Kind: {provider.kind} - - - URL: {provider.url} - - - Client ID: {provider.client_id} - - - Client secret: {provider.client_secret} - - - Scope: {provider.scope} - - - Use PKCE: {provider.use_pkce.toString()} + Client secret: {provider.client_secret} + Scope: {provider.scope} + Use PKCE: {provider.use_pkce.toString()} + {text} );