Skip to content

Commit

Permalink
Spell out infrastructure (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebknoll authored Mar 23, 2021
1 parent 95ab743 commit 8b2db3c
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
@@ -1,7 +1,7 @@
// ==UserScript==

// @name AzDO Pull Request Improvements
// @version 2.54.1
// @version 2.54.2
// @author Alejandro Barreto (National Instruments)
// @description Adds sorting and categorization to the PR dashboard. Also adds minor improvements to the PR diff experience, such as a base update selector and per-file checkboxes.
// @license MIT
Expand Down Expand Up @@ -1243,7 +1243,7 @@
session.onEveryNew(document, '.issues-card-content .secondary-text', secondaryText => {
const taskName = secondaryText.textContent.split(' • ')[1];
if (tasksWithInfraErrors.includes(taskName)) {
$('<span> ⚠️POSSIBLE INFRA ERROR</span>').appendTo(secondaryText);
$('<span> ⚠️POSSIBLE INFRASTRUCTURE ERROR</span>').appendTo(secondaryText);
}
});

Expand Down

0 comments on commit 8b2db3c

Please sign in to comment.