aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-05-24 12:02:45 +0200
committerChocobozzz <me@florianbigard.com>2019-05-24 12:02:45 +0200
commit86aafd06f2d124786ea3d10477f356c2e3f85dd6 (patch)
tree759f2fc130a5f44dfc19d0d43b1c78a3a065e4ee /client/src/app/shared
parent8d51015bd0bdf9c1bc1df9a1ba127d87ba0f36ae (diff)
parent624bca15fb7a15a0a788c3d06c41af451bfca28c (diff)
downloadPeerTube-86aafd06f2d124786ea3d10477f356c2e3f85dd6.tar.gz
PeerTube-86aafd06f2d124786ea3d10477f356c2e3f85dd6.tar.zst
PeerTube-86aafd06f2d124786ea3d10477f356c2e3f85dd6.zip
Merge branch 'release/v1.3.0' into develop
Diffstat (limited to 'client/src/app/shared')
-rw-r--r--client/src/app/shared/video-playlist/video-add-to-playlist.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts b/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
index c6cff03a4..e7f7dfe8a 100644
--- a/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
+++ b/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
@@ -65,7 +65,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit,
65 } 65 }
66 } 66 }
67 67
68 init () { 68 reload () {
69 this.resetOptions(true) 69 this.resetOptions(true)
70 70
71 if (this.lazyLoad !== true) this.load() 71 if (this.lazyLoad !== true) this.load()
@@ -74,7 +74,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit,
74 reload () { 74 reload () {
75 this.videoPlaylists = [] 75 this.videoPlaylists = []
76 76
77 this.init() 77 this.reload()
78 78
79 this.cd.markForCheck() 79 this.cd.markForCheck()
80 } 80 }