Skip to content

Commit 6e65c5a

Browse files
joaoantoniocardosopatrickelectric
authored andcommitted
core: frontend: src: components: Make video streams list as rows not columns
1 parent a5f4b88 commit 6e65c5a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

core/frontend/src/components/video-manager/VideoDevice.vue

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,16 @@
6868
</v-container>
6969
<v-card flat>
7070
<v-container v-if="are_video_streams_available && !updating_streams">
71-
<v-row>
72-
<v-col
73-
v-for="(stream, i) in device_streams"
74-
:key="i"
75-
>
76-
<video-stream
77-
:stream="stream"
78-
:device="device"
79-
/>
80-
</v-col>
81-
</v-row>
71+
<div
72+
v-for="(stream, i) in device_streams"
73+
:key="i"
74+
>
75+
<div v-if="i > 0" class="mt-10" />
76+
<video-stream
77+
:stream="stream"
78+
:device="device"
79+
/>
80+
</div>
8281
</v-container>
8382
<v-container v-else-if="updating_streams">
8483
<spinning-logo

0 commit comments

Comments
 (0)