ConceptCreator/src/app/editor/character-editor/character-editor.component.html
Sebastian Böckelmann 9a51cb3a80
Some checks failed
E2E Testing / test (push) Failing after 2m3s
Beginning of Editor for Characterspecific Gamesystems
2024-04-11 13:45:29 +02:00

13 lines
433 B
HTML

<mat-card>
<mat-card-header>
<mat-card-title>Characterspecific Gamesystems</mat-card-title>
</mat-card-header>
<mat-card-content>
<mat-accordion>
<mat-expansion-panel *ngFor="let gamesystem of character!.characterSpecificGamesystems">
<mat-expansion-panel-header>{{gamesystem.componentName}}</mat-expansion-panel-header>
</mat-expansion-panel>
</mat-accordion>
</mat-card-content>
</mat-card>