Skip to content

Commit

Permalink
Ensure eslint does not optimize away the lint disable
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-glombik committed Oct 24, 2024
1 parent cdf5d6c commit d592c52
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import { ButtonSize } from 'app/shared/components/button.component';
export class FormFooterComponent {
@Output() save = new EventEmitter<void>();

// eslint-disable @angular-eslint/no-output-native -- Necessary to avoid conflicts with native DOM events
@Output() cancel = new EventEmitter<void>();
// eslint-enable @angular-eslint/no-output-native

@Input() isSaving: boolean = false;
@Input() isDisabled: boolean = false;
Expand Down

0 comments on commit d592c52

Please sign in to comment.