Swap boolean values of the private dropdown to be more in line with Spotify's request data needed.
This commit is contained in:
parent
add7b23383
commit
3b6362fed1
1 changed files with 4 additions and 4 deletions
|
|
@ -25,9 +25,9 @@
|
|||
/>
|
||||
</div>
|
||||
<div class="input-row">
|
||||
<select v-model="is_private">
|
||||
<option value="true">Private Playlist</option>
|
||||
<option value="false">Public Playlist</option>
|
||||
<select v-model="is_public">
|
||||
<option :value="false">Private Playlist</option>
|
||||
<option :value="true">Public Playlist</option>
|
||||
</select>
|
||||
<button>Create Playlist</button>
|
||||
</div>
|
||||
|
|
@ -55,7 +55,7 @@ export default {
|
|||
container: false,
|
||||
content: false,
|
||||
name: ``,
|
||||
is_private: true,
|
||||
is_public: false,
|
||||
description: `Playlist auto-generated by Top Lists for Spotify`,
|
||||
}},
|
||||
mounted() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue