Skip to content

Commit

Permalink
More Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablosanqt committed Oct 22, 2024
1 parent 3d3b9f1 commit b5612f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[authorId]="posting.author?.id"
[authorName]="posting.author?.name"
[imageUrl]="posting.author?.imageUrl"
[isEditable]="currentUser !== undefined && posting.author.id === currentUser.id"
[isEditable]="currentUser !== undefined && posting.author?.id === currentUser.id"
>
</jhi-profile-picture>
<span class="fs-small d-inline-flex flex-column align-items-start">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { RouterLink } from '@angular/router';
selector: 'jhi-profile-picture',
standalone: true,
templateUrl: './profile-picture.component.html',
styleUrl: './profile-picture.component.scss',
styleUrls: ['./profile-picture.component.scss'],
imports: [ArtemisSharedCommonModule, RouterLink, ArtemisSharedPipesModule],
})
export class ProfilePictureComponent implements OnInit, OnChanges {
Expand Down

0 comments on commit b5612f7

Please sign in to comment.