mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-22 11:15:14 +00:00
quality selector label fix
This commit is contained in:
parent
8bbbca2bef
commit
af82135813
2 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
</v-btn>
|
||||
</template>
|
||||
<v-card class="background">
|
||||
<v-subheader>Playback Speed</v-subheader>
|
||||
<v-subheader>Quality for current video</v-subheader>
|
||||
<v-card-text style="max-height: 50vh" class="pa-0">
|
||||
<v-list-item
|
||||
v-for="src in sources"
|
||||
|
|
|
@ -321,6 +321,7 @@ export default {
|
|||
this.loaded = false;
|
||||
|
||||
this.$youtube.getVid(this.$route.query.v).then((result) => {
|
||||
// TODO: add other resolutions as well
|
||||
this.sources = result.availableResolutions;
|
||||
console.log("Video info data", result);
|
||||
this.video = result;
|
||||
|
|
Loading…
Reference in a new issue