[ADF-5543] Enable lint accessibility and resolve found issues (#9421)

This commit is contained in:
tomson
2024-04-17 09:36:40 +02:00
committed by GitHub
parent eaad09b06d
commit 74ef7eed1a
61 changed files with 1162 additions and 1054 deletions

View File

@@ -26,7 +26,6 @@ import { AspectListDialogComponentData } from './aspect-list-dialog-data.interfa
encapsulation: ViewEncapsulation.None
})
export class AspectListDialogComponent implements OnInit {
title: string;
description: string;
currentNodeId: string;
@@ -35,8 +34,7 @@ export class AspectListDialogComponent implements OnInit {
currentAspectSelection: string[] = [];
constructor(private dialog: MatDialogRef<AspectListDialogComponent>,
@Inject(MAT_DIALOG_DATA) public data: AspectListDialogComponentData) {
constructor(private dialog: MatDialogRef<AspectListDialogComponent>, @Inject(MAT_DIALOG_DATA) public data: AspectListDialogComponentData) {
this.title = data.title;
this.description = data.description;
this.overTableMessage = data.overTableMessage;
@@ -47,7 +45,7 @@ export class AspectListDialogComponent implements OnInit {
this.dialog.backdropClick().subscribe(() => {
this.close();
});
this.dialog.keydownEvents().subscribe(event => {
this.dialog.keydownEvents().subscribe((event) => {
// Esc
if (event.keyCode === 27) {
event.preventDefault();