summaryrefslogtreecommitdiffstats
path: root/settings/src
diff options
context:
space:
mode:
authorCharles Parham <cparham289@gmail.com>2019-06-30 23:31:47 -0400
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-07-04 07:07:13 +0200
commit2733ed24dbf178f1050e0a96936a8201de6e1972 (patch)
tree3f0ff71ba1fec8b5f6cc6983b2b3b86bfd213790 /settings/src
parent853a1a586aaf00c350970e71d4ceffe307b9090f (diff)
downloadnextcloud-server-2733ed24dbf178f1050e0a96936a8201de6e1972.tar.gz
nextcloud-server-2733ed24dbf178f1050e0a96936a8201de6e1972.zip
Fix 'No apps found for your version' at bottom of app bundles section
Signed-off-by: Charles Parham <cparham289@gmail.com>
Diffstat (limited to 'settings/src')
-rw-r--r--settings/src/components/appList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue
index bef749981a9..dd693b2fdce 100644
--- a/settings/src/components/appList.vue
+++ b/settings/src/components/appList.vue
@@ -62,7 +62,7 @@
</div>
</div>
- <div id="apps-list-empty" class="emptycontent emptycontent-search" v-if="!loading && searchApps.length === 0 && apps.length === 0">
+ <div id="apps-list-empty" class="emptycontent emptycontent-search" v-if="search !== '' && !loading && searchApps.length === 0 && apps.length === 0">
<div id="app-list-empty-icon" class="icon-settings-dark"></div>
<h2>{{ t('settings', 'No apps found for your version')}}</h2>
</div>