diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-05-25 13:25:58 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-06-06 11:40:09 +0200 |
commit | 923e8598b033ff1d9fc78b357e4d6390897630c4 (patch) | |
tree | 8eb3bf6e0d483446ddf9a2d7c0dcbb7b371eae7d /settings/src/views/Apps.vue | |
parent | 492b76935c29b931c991d978b6883eb2d072cf43 (diff) | |
download | nextcloud-server-923e8598b033ff1d9fc78b357e4d6390897630c4.tar.gz nextcloud-server-923e8598b033ff1d9fc78b357e4d6390897630c4.zip |
Fix app store and sidebar view
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/src/views/Apps.vue')
-rw-r--r-- | settings/src/views/Apps.vue | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/settings/src/views/Apps.vue b/settings/src/views/Apps.vue index 07147d10c61..b24123e4aff 100644 --- a/settings/src/views/Apps.vue +++ b/settings/src/views/Apps.vue @@ -24,9 +24,8 @@ <div id="app"> <app-navigation :menu="menu" /> <app-list :category="category" :app="currentApp" :search="search"></app-list> - <div id="app-sidebar" v-if="currentApp"> - {{ search }} - <app-details :app="currentApp"></app-details> + <div id="app-sidebar" v-if="id"> + <app-details :category="category" :app="currentApp"></app-details> </div> </div> </template> |