aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/e2e/src/utils/hooks.ts2
-rw-r--r--client/src/app/shared/shared-main/angular/defer-loading.directive.ts2
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
24async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) { 24async 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')
21export class DeferLoadingDirective implements AfterViewInit, OnDestroy { 21export 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