Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/azdo-pr-dashboard.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==

// @name More Awesome Azure DevOps (userscript)
// @version 3.13.0
// @version 3.13.1
// @author Alejandro Barreto (NI)
// @description Makes general improvements to the Azure DevOps experience, particularly around pull requests. Also contains workflow improvements for NI engineers.
// @license MIT
Expand Down Expand Up @@ -1206,7 +1206,7 @@

const tooltipHtml = oooText
? `<p style='font-weight: bold; text-align: center'>This user is out of office:</p>
<p class="user-message">${escapeStringForHtml(oooText).replace(/\r?\n/ig, '<br><br>')}</p>`
<p class="user-message">${escapeStringForHtml(oooText).trim().replace(/\r?\n/ig, '<br><br>')}</p>`
: '<p>This user is out of office but has not set an auto-reply message.</p>';

annotateReviewer(nameElement, 'ooo', 'Out of Office', tooltipHtml);
Expand Down
Loading