Skip to content

Commit

Permalink
Fix policy conflict ID names -- PO, not P0
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Sep 10, 2024
1 parent 7041221 commit d86a366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/route_check/policy_check/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<div class="govuk-width-container">
{#each questions as question, idx}
<h2>P00{idx + 1}: {question}</h2>
<h2>PO0{idx + 1}: {question}</h2>
<div style="display: flex; justify-content: space-evenly">
<YesNo
inlineSmall
Expand Down
2 changes: 1 addition & 1 deletion src/routes/route_check/problems_map/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
function labelConflict(conflict: PolicyConflict): string {
let base = conflict.conflict
? "P00" + getFullPolicyConflict(conflict.conflict)
? "PO0" + getFullPolicyConflict(conflict.conflict)
: "Unknown conflict";
return conflict.locationName ? `${base} (${conflict.locationName})` : base;
}
Expand Down

0 comments on commit d86a366

Please sign in to comment.