aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPytal <24800714+Pytal@users.noreply.github.com>2023-09-06 16:19:06 -0700
committerGitHub <noreply@github.com>2023-09-06 16:19:06 -0700
commit527329978e185efef804497f62b0e456f8a84558 (patch)
treeee65023bc3ef7b60155b01545142988633e45a28 /apps
parent0c64e313b8c350b5872e107b0e4e1ab3d9767c0d (diff)
parent2235d3b78ca41cd737fb82b84d85aee5636b3e8b (diff)
downloadnextcloud-server-527329978e185efef804497f62b0e456f8a84558.tar.gz
nextcloud-server-527329978e185efef804497f62b0e456f8a84558.zip
Merge pull request #40198 from nextcloud/fix/40015-The_apps_view_represents_a_list_of_elements_and_should_be_implemented_as_such
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/src/components/AppList.vue8
-rw-r--r--apps/settings/src/components/AppList/AppItem.vue2
2 files changed, 7 insertions, 3 deletions
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue
index 875ba67fc8d..18c4331e0f9 100644
--- a/apps/settings/src/components/AppList.vue
+++ b/apps/settings/src/components/AppList.vue
@@ -103,13 +103,13 @@
:category="category" />
</template>
</table>
- <template v-if="useAppStoreView">
+ <ul v-if="useAppStoreView" class="apps-store-view">
<AppItem v-for="app in apps"
:key="app.id"
:app="app"
:category="category"
:list-view="false" />
- </template>
+ </ul>
</div>
<div id="apps-list-search" class="apps-list installed">
@@ -295,4 +295,8 @@ export default {
line-height: 30px;
color: var(--color-text-light);
}
+ .apps-store-view {
+ display: flex;
+ flex-wrap: wrap;
+ }
</style>
diff --git a/apps/settings/src/components/AppList/AppItem.vue b/apps/settings/src/components/AppList/AppItem.vue
index 46c0612213d..f4948464e8d 100644
--- a/apps/settings/src/components/AppList/AppItem.vue
+++ b/apps/settings/src/components/AppList/AppItem.vue
@@ -21,7 +21,7 @@
-->
<template>
- <component :is="listView ? `tr` : `div`"
+ <component :is="listView ? `tr` : `li`"
class="section"
:class="{ selected: isSelected }"
@click="showAppDetails">