ConceptCreator/src/app/side-overviews/script-account-overview/script-account-overview.component.html
Sebastian Böckelmann 388fcb044c
All checks were successful
E2E Testing / test (push) Successful in 1m22s
Open ScriptAccount from ContextMenu for adding
2024-01-27 13:36:12 +01:00

9 lines
521 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">inventory_2</mat-icon>{{scriptAccount.componentName}}
</mat-list-item>
</mat-action-list>