Skip to content

Commit

Permalink
#2896 Modify display of status
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Oct 21, 2024
1 parent 030fd58 commit cb76a16
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,11 @@ const skillId = computed(() => {
</div>
</div>
<div v-if="skill.selfReporting && skill.selfReporting.requestedOn && !skill.selfReporting.approvalId"
<div v-if="skill.selfReporting && skill.selfReporting.requestedOn"
data-cy="approvalPending">
<span v-if="!skill.selfReporting.rejectedOn" class="text-orange-500"><i class="far fa-clock"
aria-hidden="true" /> Pending Approval</span>
<span v-else class="text-red-500"><i class="fas fa-heart-broken skills-theme-primary-color"
<span v-else-if="skill.selfReporting.rejectedOn" class="text-red-500"><i class="fas fa-heart-broken skills-theme-primary-color"
aria-hidden="true"></i> Request Rejected</span>
</div>
</div>
Expand Down

0 comments on commit cb76a16

Please sign in to comment.