mirror of https://github.com/FreeTubeApp/FreeTube
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: {
|
||||
toggleSave: function () {
|
||||
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) {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
>
|
||||
</router-link>
|
||||
<div
|
||||
v-if="isLive || duration !== '0:00'"
|
||||
class="videoDuration"
|
||||
:class="{ live: isLive }"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue