aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-06 16:41:08 +0200
committerChocobozzz <me@florianbigard.com>2021-08-11 11:49:01 +0200
commit134006b0d4528c07f0022c6e75257bf9fedbfebb (patch)
tree8c977db89b10984896f7e96c92109d5b4ab345b6 /client/src/app
parent31aa391d13f78743bb552bc8c337964afb3b5817 (diff)
downloadPeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.tar.gz
PeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.tar.zst
PeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.zip
Update client dependencies
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/core/auth/auth.service.ts2
-rw-r--r--client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts
index 60bd72c60..ef5a3808e 100644
--- a/client/src/app/core/auth/auth.service.ts
+++ b/client/src/app/core/auth/auth.service.ts
@@ -206,7 +206,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
206 this.refreshingTokenObservable = this.http.post<UserRefreshToken>(AuthService.BASE_TOKEN_URL, body, { headers }) 206 this.refreshingTokenObservable = this.http.post<UserRefreshToken>(AuthService.BASE_TOKEN_URL, body, { headers })
207 .pipe( 207 .pipe(
208 map(res => this.handleRefreshToken(res)), 208 map(res => this.handleRefreshToken(res)),
209 tap(() => this.refreshingTokenObservable = null), 209 tap(() => { this.refreshingTokenObservable = null }),
210 catchError(err => { 210 catchError(err => {
211 this.refreshingTokenObservable = null 211 this.refreshingTokenObservable = null
212 212
diff --git a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts
index 8b019103c..7069fa8fd 100644
--- a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts
+++ b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts
@@ -47,7 +47,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit,
47 isNewPlaylistBlockOpened = false 47 isNewPlaylistBlockOpened = false
48 48
49 videoPlaylistSearch: string 49 videoPlaylistSearch: string
50 videoPlaylistSearchChanged = new Subject<string>() 50 videoPlaylistSearchChanged = new Subject<void>()
51 51
52 videoPlaylists: PlaylistSummary[] = [] 52 videoPlaylists: PlaylistSummary[] = []
53 53