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>
|
||||||
<div class="input-row">
|
<div class="input-row">
|
||||||
<select v-model="is_private">
|
<select v-model="is_public">
|
||||||
<option value="true">Private Playlist</option>
|
<option :value="false">Private Playlist</option>
|
||||||
<option value="false">Public Playlist</option>
|
<option :value="true">Public Playlist</option>
|
||||||
</select>
|
</select>
|
||||||
<button>Create Playlist</button>
|
<button>Create Playlist</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -55,7 +55,7 @@ export default {
|
||||||
container: false,
|
container: false,
|
||||||
content: false,
|
content: false,
|
||||||
name: ``,
|
name: ``,
|
||||||
is_private: true,
|
is_public: false,
|
||||||
description: `Playlist auto-generated by Top Lists for Spotify`,
|
description: `Playlist auto-generated by Top Lists for Spotify`,
|
||||||
}},
|
}},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue