mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
fix add to playlist modal bugs
This commit is contained in:
parent
e98e132598
commit
7c48b4641a
2 changed files with 2 additions and 2 deletions
src/components
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<ModalComponent>
|
<ModalComponent>
|
||||||
<span class="text-2xl w-max inline-block" v-t="'actions.select_playlist'" />
|
<h2 v-t="'actions.select_playlist'" />
|
||||||
<select class="select w-full mt-3" v-model="selectedPlaylist">
|
<select class="select w-full mt-3" v-model="selectedPlaylist">
|
||||||
<option v-for="playlist in playlists" :value="playlist.id" :key="playlist.id" v-text="playlist.name" />
|
<option v-for="playlist in playlists" :value="playlist.id" :key="playlist.id" v-text="playlist.name" />
|
||||||
</select>
|
</select>
|
||||||
|
|
|
@ -73,7 +73,6 @@
|
||||||
>
|
>
|
||||||
<font-awesome-icon icon="circle-minus" />
|
<font-awesome-icon icon="circle-minus" />
|
||||||
</button>
|
</button>
|
||||||
<PlaylistAddModal v-if="showModal" :video-id="video.url.substr(-11)" @close="showModal = !showModal" />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
|
@ -111,6 +110,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<PlaylistAddModal v-if="showModal" :video-id="video.url.substr(-11)" @close="showModal = !showModal" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in a new issue