From fbc970855fce4e122c404679c1cc61dbb0ce7afc Mon Sep 17 00:00:00 2001 From: "julia.kirschenheuter" Date: Thu, 26 Oct 2023 17:27:21 +0200 Subject: Create semantically right table for the "OAuth 2.0 clients" Adapt styles Signed-off-by: julia.kirschenheuter --- apps/oauth2/src/App.vue | 19 +++++++++--- apps/oauth2/src/components/OAuthItem.vue | 53 +++++++++++++++++--------------- 2 files changed, 43 insertions(+), 29 deletions(-) (limited to 'apps/oauth2/src') diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 5fb60df0120..71cf22dbf89 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -26,9 +26,20 @@ - + + + + @@ -121,7 +132,7 @@ export default { { name: this.newClient.name, redirectUri: this.newClient.redirectUri, - } + }, ).then(response => { // eslint-disable-next-line vue/no-mutating-props this.clients.push(response.data) diff --git a/apps/oauth2/src/components/OAuthItem.vue b/apps/oauth2/src/components/OAuthItem.vue index a759af56906..fcceade4082 100644 --- a/apps/oauth2/src/components/OAuthItem.vue +++ b/apps/oauth2/src/components/OAuthItem.vue @@ -21,25 +21,21 @@ -->
- -  + + {{ t('oauth2', 'Name') }} + + {{ t('oauth2', 'Redirection URI') }} + + {{ t('oauth2', 'Client Identifier') }} + + {{ t('oauth2', 'Secret key') }} + + {{ t('oauth2', 'Delete client') }}