mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-26 05:05:23 +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>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
<v-card class="background">
|
<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-card-text style="max-height: 50vh" class="pa-0">
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="src in sources"
|
v-for="src in sources"
|
||||||
|
|
|
@ -321,6 +321,7 @@ export default {
|
||||||
this.loaded = false;
|
this.loaded = false;
|
||||||
|
|
||||||
this.$youtube.getVid(this.$route.query.v).then((result) => {
|
this.$youtube.getVid(this.$route.query.v).then((result) => {
|
||||||
|
// TODO: add other resolutions as well
|
||||||
this.sources = result.availableResolutions;
|
this.sources = result.availableResolutions;
|
||||||
console.log("Video info data", result);
|
console.log("Video info data", result);
|
||||||
this.video = result;
|
this.video = result;
|
||||||
|
|
Loading…
Reference in a new issue