[ACS-8960] Review and apply required inputs where possible (#4339)

This commit is contained in:
dominikiwanekhyland
2025-01-17 13:15:35 +01:00
committed by GitHub
parent d30c933259
commit 52b4060e78
8 changed files with 10 additions and 10 deletions

View File

@@ -49,7 +49,7 @@ export class InfoDrawerComponent implements OnChanges, OnInit, OnDestroy {
@Input()
nodeId: string;
@Input()
@Input({ required: true })
node: NodeEntry;
isLoading = false;

View File

@@ -37,7 +37,7 @@ import { MatToolbarModule } from '@angular/material/toolbar';
encapsulation: ViewEncapsulation.None
})
export class ToolbarComponent {
@Input() items: ContentActionRef[];
@Input({ required: true }) items: ContentActionRef[];
trackByActionId(_: number, action: ContentActionRef) {
return action.id;