From bd2a731207a3e172cf58ca98b5fa3f335da9e5e2 Mon Sep 17 00:00:00 2001 From: Kyle Roeschley Date: Tue, 16 Apr 2024 14:33:31 -0500 Subject: [PATCH] Run eslint --fix --- src/azdo-pr-dashboard.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azdo-pr-dashboard.user.js b/src/azdo-pr-dashboard.user.js index 3364f7f..f3d7208 100644 --- a/src/azdo-pr-dashboard.user.js +++ b/src/azdo-pr-dashboard.user.js @@ -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)); }