fix: change from single typeOfOccupation to array
This commit is contained in:
parent
83fc7df137
commit
b388fb039a
@ -49,7 +49,12 @@
|
|||||||
<!-- Discipline -->
|
<!-- Discipline -->
|
||||||
<div class="mat-body-1">{{ elementData["discipline"] }}</div>
|
<div class="mat-body-1">{{ elementData["discipline"] }}</div>
|
||||||
<!-- Type of Occupation -->
|
<!-- Type of Occupation -->
|
||||||
<div class="mat-body">({{ elementData["typeOfOccupation"] }})</div>
|
@for (typeOfOccupation of elementData["typeOfOccupations"]; track $index) {
|
||||||
|
@if ($index !== 0) {
|
||||||
|
<br/>
|
||||||
|
}
|
||||||
|
<div class="mat-body">({{typeOfOccupation}})</div>
|
||||||
|
}
|
||||||
|
|
||||||
<!-- Professors -->
|
<!-- Professors -->
|
||||||
@if (checkAvailableData(elementData["professors"])) {
|
@if (checkAvailableData(elementData["professors"])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user