diff options
author | Charles Parham <cparham289@gmail.com> | 2019-06-30 23:31:47 -0400 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-07-04 07:07:13 +0200 |
commit | 2733ed24dbf178f1050e0a96936a8201de6e1972 (patch) | |
tree | 3f0ff71ba1fec8b5f6cc6983b2b3b86bfd213790 /settings/src | |
parent | 853a1a586aaf00c350970e71d4ceffe307b9090f (diff) | |
download | nextcloud-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.vue | 2 |
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> |