diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-08-30 19:58:55 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-31 07:48:07 +0200 |
commit | 5659e69cd833a2022abb2dc5d906bfaa61bc524f (patch) | |
tree | e3dce70b1b513469c445a3ef2a98ee46f9578e6f /apps/oauth2/src/App.vue | |
parent | 5fb1d8d3bef31029e52b971b0127534fe7369fd5 (diff) | |
download | nextcloud-server-5659e69cd833a2022abb2dc5d906bfaa61bc524f.tar.gz nextcloud-server-5659e69cd833a2022abb2dc5d906bfaa61bc524f.zip |
Pimp Oauth2 table
Fixes #12302
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/src/App.vue')
-rw-r--r-- | apps/oauth2/src/App.vue | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 34b466ab7e2..86243b63ee6 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -28,17 +28,8 @@ <table v-if="clients.length > 0" class="grid"> <thead> <tr> - <th id="headerName" scope="col"> - {{ t('oauth2', 'Name') }} - </th> - <th id="headerRedirectUri" scope="col"> - {{ t('oauth2', 'Redirection URI') }} - </th> - <th id="headerClientIdentifier" scope="col"> - {{ t('oauth2', 'Client Identifier') }} - </th> - <th id="headerSecret" scope="col"> - {{ t('oauth2', 'Secret') }} + <th id="headerContent"> + </th> <th id="headerRemove"> @@ -127,3 +118,8 @@ export default { }, } </script> +<style scoped> + table { + max-width: 800px; + } +</style> |