Fix usage of v-for and v-if on same component

This commit is contained in:
Tim Miller-Williams 2020-04-28 15:27:09 +01:00
parent 8263b17861
commit 06d6dbe3a3

View File

@ -106,8 +106,8 @@
@start="onDragStart" @start="onDragStart"
@end="onDragEnd" @end="onDragEnd"
> >
<template v-for="(channel, index) in network.channels">
<Channel <Channel
v-for="(channel, index) in network.channels"
v-if="index > 0" v-if="index > 0"
:key="channel.id" :key="channel.id"
:channel="channel" :channel="channel"
@ -117,6 +117,7 @@
channel === $store.state.activeChannel.channel channel === $store.state.activeChannel.channel
" "
/> />
</template>
</Draggable> </Draggable>
</div> </div>
</Draggable> </Draggable>