diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-10-26 17:27:21 +0200 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-10-27 09:55:45 +0200 |
commit | fbc970855fce4e122c404679c1cc61dbb0ce7afc (patch) | |
tree | f3e667a55900d3eed41a353caaa9d84c1ba45538 /apps/oauth2/src/App.vue | |
parent | ee1480cefc342578a2ee7539e4761abf59ac4a96 (diff) | |
download | nextcloud-server-fbc970855fce4e122c404679c1cc61dbb0ce7afc.tar.gz nextcloud-server-fbc970855fce4e122c404679c1cc61dbb0ce7afc.zip |
Create semantically right table for the "OAuth 2.0 clients"
Adapt styles
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/oauth2/src/App.vue')
-rw-r--r-- | apps/oauth2/src/App.vue | 19 |
1 files changed, 15 insertions, 4 deletions
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 @@ <table v-if="clients.length > 0" class="grid"> <thead> <tr> - <th id="headerContent" /> - <th id="headerRemove"> - + <th> + {{ t('oauth2', 'Name') }} + </th> + <th> + {{ t('oauth2', 'Redirection URI') }} + </th> + <th> + {{ t('oauth2', 'Client Identifier') }} + </th> + <th> + {{ t('oauth2', 'Secret key') }} + </th> + <th> + {{ t('oauth2', 'Delete client') }} </th> </tr> </thead> @@ -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) |