]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Cleanup video playlist element miniature code
authorChocobozzz <me@florianbigard.com>
Fri, 22 Oct 2021 14:05:57 +0000 (16:05 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 22 Oct 2021 14:05:57 +0000 (16:05 +0200)
client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts

index 5fc8b21fb3e787c27509794e6de7e7b9a053db7d..6f72a07c4a856c50b730e3cf4b55614fdd3d3c49 100644 (file)
@@ -121,7 +121,7 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
     let text = ''
 
     if (this.videoUploaded === true) {
-      // FIXME: cannot concatenate strings using $localize
+      // We can't concatenate strings using $localize
       text = $localize`Your video was uploaded to your account and is private.` + ' ' +
         $localize`But associated data (tags, description...) will be lost, are you sure you want to leave this page?`
     } else {
index 8d1e14f94d3a396dbac50b03454a9e5402fcd6de..ea58d7f76a675b5cbfd40e1b442762732218dd56 100644 (file)
@@ -166,9 +166,6 @@ export class VideoPlaylistElementMiniatureComponent implements OnInit {
       }
     }
 
-    // FIXME: why do we have to use setTimeout here?
-    setTimeout(() => {
-      this.cdr.detectChanges()
-    })
+    this.cdr.markForCheck()
   }
 }