Skip to content

Commit

Permalink
Fix groups html (#543)
Browse files Browse the repository at this point in the history
* Update projects.component.html

* Update CHANGELOG.md

* Update projects.component.html
  • Loading branch information
mboudet authored Nov 5, 2024
1 parent d69db2f commit 7f29a9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.4.32 (Unreleased)

* Clearer error message when adding a website
* Fix error in 'projects' tab from user page

## 1.4.31 (2024-09-27)

Expand Down
1 change: 1 addition & 0 deletions manager2/src/app/user/projects/projects.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<tbody>
<tr *ngFor="let project of user_projects">
<td><a routerLink="/admin/project/{{project.id}}"><span class="p-button p-button-sm p-button-primary">{{project.id}}</span></a></td>
<td><span>{{project.group}}</span></td>
<td><span *ngIf="project.owner">x</span></td>
<td><span *ngIf="project.member">x</span></td>
<td><app-my-delete-confirm [onConfirm]="remove_from_project" [data]="project.id"></app-my-delete-confirm></td>
Expand Down

0 comments on commit 7f29a9c

Please sign in to comment.