This is an automated email from the ASF dual-hosted git repository.

hshpak pushed a commit to branch 
feat/DATALAB-3008/support-autocomplete-for-sharing-dialog
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git


The following commit(s) were added to 
refs/heads/feat/DATALAB-3008/support-autocomplete-for-sharing-dialog by this 
push:
     new 14f18cfd9 minor changes
14f18cfd9 is described below

commit 14f18cfd9684206634411ef10b2bd73bc736f24c
Author: Hennadii_Shpak <[email protected]>
AuthorDate: Tue Sep 20 15:06:21 2022 +0300

    minor changes
---
 .../webapp/src/app/core/directives/click-outside.directive.ts         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/services/self-service/src/main/resources/webapp/src/app/core/directives/click-outside.directive.ts
 
b/services/self-service/src/main/resources/webapp/src/app/core/directives/click-outside.directive.ts
index e19f0cd0c..1f818ffc4 100644
--- 
a/services/self-service/src/main/resources/webapp/src/app/core/directives/click-outside.directive.ts
+++ 
b/services/self-service/src/main/resources/webapp/src/app/core/directives/click-outside.directive.ts
@@ -29,7 +29,7 @@ import { Directive, OnInit, OnDestroy, Output, EventEmitter, 
ElementRef } from '
 
 export class ClickOutsideDirective implements OnInit, OnDestroy {
 
-  @Output('clickOutside') clickOutside: EventEmitter<Object>;
+  @Output() clickOutside: EventEmitter<Object>;
 
   private listening: boolean;
   private globalClick: any;
@@ -44,7 +44,7 @@ export class ClickOutsideDirective implements OnInit, 
OnDestroy {
       delay(1),
       tap(() => {
         this.listening = true;
-      }),).subscribe(($event: MouseEvent) => {
+      })).subscribe(($event: MouseEvent) => {
         this.onGlobalClick($event);
       });
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to