diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-06-13 12:08:35 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-19 11:42:41 +0200 |
commit | 976f478a9887226820ba0fb452afc01f0e668d32 (patch) | |
tree | 67647642622d89d75a197272a399e9cb7cfe5f2b /apps/oauth2/js-src | |
parent | d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659 (diff) | |
download | nextcloud-server-976f478a9887226820ba0fb452afc01f0e668d32.tar.gz nextcloud-server-976f478a9887226820ba0fb452afc01f0e668d32.zip |
[oauth2] Fix css for admin settings
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/oauth2/js-src')
-rw-r--r-- | apps/oauth2/js-src/components/OAuthItem.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/js-src/components/OAuthItem.vue b/apps/oauth2/js-src/components/OAuthItem.vue index 0ae37157487..2ef10bfadf5 100644 --- a/apps/oauth2/js-src/components/OAuthItem.vue +++ b/apps/oauth2/js-src/components/OAuthItem.vue @@ -24,8 +24,8 @@ <td>{{name}}</td> <td>{{redirectUri}}</td> <td><code>{{clientId}}</code></td> - <td><code>{{renderedSecret}}</code><a class='icon-toggle has-tooltip' :title="t('oauth2', 'Show client secret')" @click="toggleSecret">SHOW SECRET</a></td> - <td class="action-column"><span><a class="icon-delete has-tooltip" :title="t('oauth2', 'Delete')" @click="$emit('delete', id)">DELETE</a></span></td> + <td><code>{{renderedSecret}}</code><a class='icon-toggle has-tooltip' :title="t('oauth2', 'Show client secret')" @click="toggleSecret"></a></td> + <td class="action-column"><span><a class="icon-delete has-tooltip" :title="t('oauth2', 'Delete')" @click="$emit('delete', id)"></a></span></td> </tr> </template> |