Skip to content

Commit

Permalink
fix(client): manager view display message only for pending feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
avine committed Mar 12, 2024
1 parent f7b0a43 commit 214445e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1 class="gbl-page-title">

<app-feedback-body [feedback]="document()" />

@if (hasBeenRequestedAgain()) {
@if (document().status === 'pending' && hasBeenRequestedAgain()) {
<ul class="gbl-icon-list">
<li class="gbl-icon-list__item">
<mat-icon class="gbl-icon-list__icon">mail</mat-icon>
Expand Down

0 comments on commit 214445e

Please sign in to comment.