Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-07-04 09:23:21 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-07-04 09:23:21 +0300
commitba08019429c6b77fd1695faf458a8426067c46f9 (patch)
tree8b6b1893db61e3ca9168a7a13031b40036af6f55 /apps/oauth2/src/App.vue
parentaa64584d679d0d5836ce2e08197d58fe2f8f4a86 (diff)
Do not show OAuth2 table if it is empty
For #10094 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/src/App.vue')
-rw-r--r--apps/oauth2/src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue
index 32a0b07a011..c9c01fc11e0 100644
--- a/apps/oauth2/src/App.vue
+++ b/apps/oauth2/src/App.vue
@@ -23,7 +23,7 @@
<div id="oauth2" class="section">
<h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2>
<p class="settings-hint">{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: oc_defaults.name}) }}</p>
- <table class="grid">
+ <table class="grid" v-if="clients.length > 0">
<thead>
<tr>
<th id="headerName" scope="col">{{ t('oauth2', 'Name') }}</th>