Commit 7d7b9624 authored by Marcelo Rivera's avatar Marcelo Rivera

(fix): lint

1 merge request!394[Sprint/HipsterHedgehog] (feat): ability to copy and paste images into posts and comments
Pipeline #100917682 passed with stages
in 48 minutes and 2 seconds
......@@ -2,11 +2,11 @@ import { Directive, EventEmitter, HostListener, Output } from '@angular/core';
@Directive({ selector: '[m-attachment-paste]' })
export class AttachmentPasteDirective {
@Output('onFilePaste') onFilePaste: EventEmitter<File> = new EventEmitter<File>();
@Output('onFilePaste')
onFilePaste: EventEmitter<File> = new EventEmitter<File>();
private focused: boolean = false;
@HostListener('focus') onFocus() {
this.focused = true;
}
......
Please register or to comment