[Android] Fix a margin issue in the remote access browsing
Nicolas Pomepuy
git at videolan.org
Thu Feb 22 13:29:25 UTC 2024
vlc-android | branch: master | Nicolas Pomepuy <nicolas at videolabs.io> | Wed Feb 7 14:11:38 2024 +0100| [ae4650c757fb41266c0cf41851f2650b6ce95781] | committer: Nicolas Pomepuy
Fix a margin issue in the remote access browsing
> https://code.videolan.org/videolan/vlc-android/commit/ae4650c757fb41266c0cf41851f2650b6ce95781
---
buildsystem/network-sharing-server/src/pages/BrowseChild.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/buildsystem/network-sharing-server/src/pages/BrowseChild.vue b/buildsystem/network-sharing-server/src/pages/BrowseChild.vue
index 1456388fcb..a868a0065a 100644
--- a/buildsystem/network-sharing-server/src/pages/BrowseChild.vue
+++ b/buildsystem/network-sharing-server/src/pages/BrowseChild.vue
@@ -1,6 +1,6 @@
<template>
- <div v-if="loaded && this.browseResult.length !== 0" class="container media-list">
- <div v-if="this.appStore.displayType[this.$route.name]" class="row gx-3 gy-3">
+ <div v-if="loaded && this.browseResult.length !== 0" class="container">
+ <div v-if="this.appStore.displayType[this.$route.name]" class="row gx-3 gy-3 media-list">
<template v-for="item in browseResult" :key="item.id">
<MediaItem :isCard="false" :media="item" :mediaType="(item.isFolder) ? 'folder' : 'file'"/>
</template>
More information about the Android
mailing list