Skip to content

Commit

Permalink
fix folder-edit license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland authored and VitoAlbano committed May 8, 2024
1 parent 41d2c57 commit aedb35a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -45,19 +45,15 @@ export class FolderEditDirective {
@Output()
success = new EventEmitter<Node>();

@HostListener('click', [ '$event' ])
@HostListener('click', ['$event'])
onClick(event) {
event.preventDefault();
if (this.folder) {
this.openDialog();
}
}

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;
Expand Down

0 comments on commit aedb35a

Please sign in to comment.