From dee7758bafcb104e2bb9b6701e9f2a88c41f9d53 Mon Sep 17 00:00:00 2001 From: DominikIwanek Date: Wed, 8 May 2024 12:30:44 +0200 Subject: [PATCH] fix folder-edit license headers --- .../lib/folder-directive/folder-edit.directive.spec.ts | 2 +- .../src/lib/folder-directive/folder-edit.directive.ts | 10 +++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts b/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts index 52f7c67d1a..9722738e96 100644 --- a/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts +++ b/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts @@ -1,6 +1,6 @@ /*! * @license - * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved. + * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts b/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts index 5f19d8f0cf..694916b85d 100644 --- a/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts +++ b/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts @@ -1,6 +1,6 @@ /*! * @license - * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved. + * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,7 +45,7 @@ export class FolderEditDirective { @Output() success = new EventEmitter(); - @HostListener('click', [ '$event' ]) + @HostListener('click', ['$event']) onClick(event) { event.preventDefault(); if (this.folder) { @@ -53,11 +53,7 @@ export class FolderEditDirective { } } - constructor( - public dialogRef: MatDialog, - public elementRef: ElementRef, - public content: ContentService - ) {} + constructor(public dialogRef: MatDialog, public elementRef: ElementRef, public content: ContentService) {} private get dialogConfig() { const { folder } = this;