]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/video/video-feed.component.ts
Add zh-Hans-CN to client.sh
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / video-feed.component.ts
index 41257ca99a7212c33b6fcf2cdda3d3ce96ec68a8..6922153c0df6e898159ad9c56b7b0fa62cfc94b1 100644 (file)
@@ -1,14 +1,10 @@
-import { Component, Input, OnChanges, SimpleChanges } from '@angular/core'
+import { Component, Input } from '@angular/core'
 
 @Component({
   selector: 'my-video-feed',
   styleUrls: [ './video-feed.component.scss' ],
   templateUrl: './video-feed.component.html'
 })
-export class VideoFeedComponent implements OnChanges {
+export class VideoFeedComponent {
   @Input() syndicationItems
-
-  ngOnChanges (changes: SimpleChanges) {
-    this.syndicationItems = changes.syndicationItems.currentValue
-  }
 }