mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-17 16:55:12 +00:00
Merge github.com-picklenik:Frontesque/VueTube
This commit is contained in:
commit
4c6a30fcdc
2 changed files with 5 additions and 4 deletions
|
@ -28,7 +28,8 @@ export default {
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
const commits = await this.$vuetube.commits;
|
const commits = await this.$vuetube.commits;
|
||||||
if (commits[0].sha != process.env.appVersion) {
|
const appVersion = process.env.appVersion;
|
||||||
|
if (appVersion !== commits[0].sha && appVersion !== 'dev-local') {
|
||||||
this.updateSnackbar = true;
|
this.updateSnackbar = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="py-1">
|
||||||
|
|
||||||
<center v-if="videos.length == 0">
|
<center v-if="videos.length == 0">
|
||||||
<v-skeleton-loader type="card-avatar, article, actions" />
|
<v-skeleton-loader type="card-avatar, article, actions" />
|
||||||
|
|
Loading…
Reference in a new issue