ConceptCreator/src/app/side-overviews/script-account-overview/script-account-overview.component.html
Sebastian Böckelmann c4e613d78c
All checks were successful
E2E Testing / test (push) Successful in 1m35s
Introduce Items and Basic ItemOverview
2024-04-20 07:30:41 +02:00

9 lines
519 B
HTML

<mat-action-list>
<mat-list-item class="scriptAccount-item" *ngFor="let scriptAccount of gameModel!.scriptAccounts"
(dblclick)="onOpenScriptAccount(scriptAccount)" (click)="selectScriptAccount(scriptAccount)"
[ngClass]="selectedScriptAccount === scriptAccount ?'selected-item':''"
(contextmenu)="selectScriptAccount(scriptAccount)">
<mat-icon class="scriptAccount-icon">analytics</mat-icon>{{scriptAccount.componentName}}
</mat-list-item>
</mat-action-list>