RED-3800: some fixes after switching from div to a.

This commit is contained in:
Nicoleta Panaghiu 2024-10-17 11:59:38 +03:00
parent f36b1fa8e2
commit e92bd55cfc
2 changed files with 2 additions and 0 deletions

View File

@ -75,5 +75,6 @@
a {
display: contents;
cursor: default;
@include mixins.clear-a;
}

View File

@ -34,6 +34,7 @@ export class TableItemComponent<T extends IListable> implements OnChanges {
toggleEntitySelected($event: MouseEvent, entity: T): void {
$event.stopPropagation();
$event.preventDefault();
this.listingService.select(entity, $event.shiftKey);
}
}