Hide duration of video when 0:00 and show message if attempt to save video
This commit is contained in:
parent
ddfe9b745c
commit
c5f99cf397
|
@ -146,6 +146,9 @@ export default Vue.extend({
|
||||||
methods: {
|
methods: {
|
||||||
toggleSave: function () {
|
toggleSave: function () {
|
||||||
console.log('TODO: ft-list-video method toggleSave')
|
console.log('TODO: ft-list-video method toggleSave')
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Saving videos are currently not available. Please wait for a future update')
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
handleOptionsClick: function (option) {
|
handleOptionsClick: function (option) {
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
>
|
>
|
||||||
</router-link>
|
</router-link>
|
||||||
<div
|
<div
|
||||||
|
v-if="isLive || duration !== '0:00'"
|
||||||
class="videoDuration"
|
class="videoDuration"
|
||||||
:class="{ live: isLive }"
|
:class="{ live: isLive }"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue