@straiffi/archon 1.2.18 → 1.2.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Archon</title>
8
- <script type="module" crossorigin src="/assets/index-C6bFOIoo.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-Dy6YE0Lr.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/rolldown-runtime-BYbx6iT9.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/dropdown-menu-DDo1cQ39.js">
11
11
  <link rel="stylesheet" crossorigin href="/assets/index-U0-u592N.css">
@@ -1397,9 +1397,9 @@ const getBundleReviewEligibilityError = (projectId, bundleId) => {
1397
1397
  }
1398
1398
  return 'No review tickets are available to re-run in this bundle';
1399
1399
  }
1400
- const blockingTicket = buildTickets.find(ticket => ticket.agent_status !== 'done');
1400
+ const blockingTicket = buildTickets.find(ticket => ticket.agent_status !== 'done' && ticket.agent_status !== 'stopped');
1401
1401
  if (blockingTicket) {
1402
- return 'All build tickets in the bundle must be done before starting review';
1402
+ return 'All build tickets in the bundle must be done or stopped before starting review';
1403
1403
  }
1404
1404
  return null;
1405
1405
  };