remove extra div

This commit is contained in:
khusroo hayat 2023-05-19 10:54:09 +05:00
parent eaa3da2220
commit 50dcd21cf4

View file

@ -67,20 +67,18 @@
<ModalComponent v-if="showEditGroupModal" @close="showEditGroupModal = false">
<h2>{{ selectedGroup.groupName }}</h2>
<div style="">
<div class="flex flex-col mt-3 mb-2 overflow-y-scroll h-70">
<div v-for="subscription in subscriptions" :key="subscription.name">
<div class="flex justify-between mr-3">
<span>{{ subscription.name }}</span>
<input
type="checkbox"
class="checkbox"
:checked="selectedGroup.channels.includes(subscription.url.substr(-11))"
@change="checkedChange(subscription)"
/>
</div>
<hr />
<div class="flex flex-col mt-3 mb-2 overflow-y-scroll h-70">
<div v-for="subscription in subscriptions" :key="subscription.name">
<div class="flex justify-between mr-3">
<span>{{ subscription.name }}</span>
<input
type="checkbox"
class="checkbox"
:checked="selectedGroup.channels.includes(subscription.url.substr(-11))"
@change="checkedChange(subscription)"
/>
</div>
<hr />
</div>
</div>
</ModalComponent>