@straiffi/archon 1.2.18 → 1.2.20
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.
- package/dist/client/assets/{TestsDialog-DObeCawq.js → TestsDialog-CjuheOAZ.js} +1 -1
- package/dist/client/assets/{index-U0-u592N.css → index-B1uf_7rL.css} +1 -1
- package/dist/client/assets/{index-C6bFOIoo.js → index-DN8hooy7.js} +5 -5
- package/dist/client/index.html +2 -2
- package/dist/server/index.js +2 -2
- package/dist/server/index.js.map +1 -1
- package/dist/server/lib/ticketWorkflowOperations.js +2 -2
- package/dist/server/lib/ticketWorkflowOperations.js.map +1 -1
- package/package.json +1 -1
package/dist/client/index.html
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
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-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DN8hooy7.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
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
11
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B1uf_7rL.css">
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
|
14
14
|
<div id="root"></div>
|
package/dist/server/index.js
CHANGED
|
@@ -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
|
};
|