Skip to content

Commit

Permalink
Merge pull request #40198 from nextcloud/fix/40015-The_apps_view_repr…
Browse files Browse the repository at this point in the history
…esents_a_list_of_elements_and_should_be_implemented_as_such
  • Loading branch information
Pytal authored Sep 6, 2023
2 parents 0c64e31 + 2235d3b commit 5273299
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
8 changes: 6 additions & 2 deletions apps/settings/src/components/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -295,4 +295,8 @@ export default {
line-height: 30px;
color: var(--color-text-light);
}
.apps-store-view {
display: flex;
flex-wrap: wrap;
}
</style>
2 changes: 1 addition & 1 deletion apps/settings/src/components/AppList/AppItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<template>
<component :is="listView ? `tr` : `div`"
<component :is="listView ? `tr` : `li`"
class="section"
:class="{ selected: isSelected }"
@click="showAppDetails">
Expand Down
4 changes: 2 additions & 2 deletions dist/settings-apps-view-7418.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-apps-view-7418.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/settings-vue-settings-apps-users-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-vue-settings-apps-users-management.js.map

Large diffs are not rendered by default.

0 comments on commit 5273299

Please sign in to comment.