Skip to content

Commit

Permalink
Fix linting errors to un-break build (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroeschl authored Apr 23, 2024
1 parent 14bde57 commit 243b173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/azdo-pr-dashboard.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,9 @@

if (employee.status) {
let status = employee.status;
if (status === "Leave Without Pay") {
if (status === 'Leave Without Pay') {
// Be nice and not show this status like this.
status = "On Leave"
status = 'On Leave';
}
annotateReviewer(nameElement, 'ooo', escapeStringForHtml(status));
}
Expand Down

0 comments on commit 243b173

Please sign in to comment.