Skip to content

Commit

Permalink
feat(playlist) Temporary use of CollectionTabs for playlist for testing.
Browse files Browse the repository at this point in the history
Need to create new component for playlist
 * Need to display in list
 * Need to be able to drag/reorder
 * (?) drag new items to it, pin to right/left? (not doing this now)
  • Loading branch information
BrianCArnold committed Nov 25, 2022
1 parent 3aaa891 commit 4cceda0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/pages/item/_itemId/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,10 @@
</v-col>
</v-row>
<v-row>
<v-col v-if="item.Type === 'BoxSet'" cols="12">
<v-col
v-if="item.Type === 'BoxSet' || item.Type === 'Playlist'"
cols="12"
>
<collection-tabs :item="item" />
</v-col>
<v-col cols="12">
Expand Down

0 comments on commit 4cceda0

Please sign in to comment.