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