diff options
author | Chocobozzz <me@florianbigard.com> | 2023-02-16 11:56:58 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-02-16 11:56:58 +0100 |
commit | e65ef81cf51746616182a822bd6933bf0d16717a (patch) | |
tree | ff9e715b50eb690b8fbb5263cf1371d9f8103ff1 /client | |
parent | 5bfe684e76d32a7745671635f8a75f932bd522e4 (diff) | |
download | PeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.tar.gz PeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.tar.zst PeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.zip |
Update server dependencies
Diffstat (limited to 'client')
-rw-r--r-- | client/e2e/src/utils/hooks.ts | 2 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/angular/defer-loading.directive.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/e2e/src/utils/hooks.ts b/client/e2e/src/utils/hooks.ts index 8baf9fb44..e57584b44 100644 --- a/client/e2e/src/utils/hooks.ts +++ b/client/e2e/src/utils/hooks.ts | |||
@@ -22,7 +22,7 @@ function afterLocalSuite () { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) { | 24 | async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) { |
25 | await createScreenshotsDirectory() | 25 | createScreenshotsDirectory() |
26 | 26 | ||
27 | appInstance = capabilities['browserName'] === 'chrome' | 27 | appInstance = capabilities['browserName'] === 'chrome' |
28 | ? 1 | 28 | ? 1 |
diff --git a/client/src/app/shared/shared-main/angular/defer-loading.directive.ts b/client/src/app/shared/shared-main/angular/defer-loading.directive.ts index 53d6e70ba..c2a4f744e 100644 --- a/client/src/app/shared/shared-main/angular/defer-loading.directive.ts +++ b/client/src/app/shared/shared-main/angular/defer-loading.directive.ts | |||
@@ -21,7 +21,7 @@ const debugLogger = debug('peertube:main:DeferLoadingDirective') | |||
21 | export class DeferLoadingDirective implements AfterViewInit, OnDestroy { | 21 | export class DeferLoadingDirective implements AfterViewInit, OnDestroy { |
22 | @ContentChild(TemplateRef) template: TemplateRef<any> | 22 | @ContentChild(TemplateRef) template: TemplateRef<any> |
23 | 23 | ||
24 | @Output() loaded: EventEmitter<any> = new EventEmitter() | 24 | @Output() loaded = new EventEmitter() |
25 | 25 | ||
26 | view: EmbeddedViewRef<any> | 26 | view: EmbeddedViewRef<any> |
27 | 27 | ||