Skip to content

Commit

Permalink
Removed project data from project list for performers
Browse files Browse the repository at this point in the history
  • Loading branch information
VILLAN3LL3 committed Nov 2, 2024
1 parent 91e3588 commit f27148c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/app/features/profile/my-projects/my-projects.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,8 @@ <h1>{{ 'MY_PROJECTS' | translate }}</h1>
<div class="p-as-start p-d-flex p-ai-center">
<span class="project-title">{{ myProject.project.title }}</span>
</div>
<div class="p-as-start p-d-flex project-date">
<span *ngIf="myProject.project.startDate">{{ myProject.project.startDate | date : 'dd.MM.yy' : 'locale(de)' }}</span>
<span *ngIf="myProject.project.endDate"> - {{ myProject.project.endDate | date : 'dd.MM.yy' : 'locale(de)' }}</span>
</div>
<div class="p-as-start p-d-flex parentProject">
<span *ngIf="myProject.project.parentId" class="project-type">
{{ 'my-projects.IS_PART_OF_PROJECT' | translate }} {{ myProject.parentProject?.title }}</span
>
<div *ngIf="myProject.project.parentId" class="p-as-start p-d-flex parentProject">
<span class="project-type"> {{ 'my-projects.IS_PART_OF_PROJECT' | translate }} {{ myProject.parentProject?.title }}</span>
</div>
</div>
<div *ngIf="myProject.participations.length === 1" class="right-align">
Expand Down

0 comments on commit f27148c

Please sign in to comment.