quality selector label fix

This commit is contained in:
Nikita Krupin 2022-05-29 14:49:31 -04:00
parent 8bbbca2bef
commit af82135813
2 changed files with 2 additions and 1 deletions

View File

@ -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"

View File

@ -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;