Skip to content

Commit f1ba3d7

Browse files
authored
fix: data for NJ and GA (#413)
Signed-off-by: David Nixon <dwnixon@gmail.com>
1 parent 49b4ce6 commit f1ba3d7

6 files changed

Lines changed: 8 additions & 5 deletions

File tree

app/components/Journey/InformedDashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const { data: election, status } = await useAsyncData<ContentProcedure>(
2525
2626
const idInfoLink = computed(() => election.value?.voting?.idUrl);
2727
const infoLink = computed(() => election.value?.website ?? "https://www.vote.org/");
28-
const ballotpediaLink = computed(() => election.value?.ballotpediaUrl ?? "https://ballotpedia.org/Elections_calendar");
28+
const ballotpediaLink = computed(() => election.value?.voting?.ballotpediaUrl ?? "https://ballotpedia.org/Elections_calendar");
2929
3030
function yesNoMaybe(val: string | boolean | undefined, yes: string = t("yes"), no: string = t("no"), maybe: string | undefined) {
3131
if (val === true) return yes;

app/components/Journey/RegisterDashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const infoLinks = computed(() => [
6666
},
6767
{
6868
title: "Voter registration info",
69-
link: infoLink,
69+
link: infoLink.value,
7070
icon: FileText,
7171
},
7272
].filter(info => info.link));

app/components/Journey/VoteDashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const { data: election, status } = await useAsyncData<ContentProcedure>(
2424
2525
const idInfoLink = computed(() => election.value?.voting?.idUrl);
2626
const infoLink = computed(() => election.value?.website ?? "https://www.vote.org/");
27-
const ballotpediaLink = computed(() => election.value?.ballotpediaUrl ?? "https://ballotpedia.org/Elections_calendar");
27+
const ballotpediaLink = computed(() => election.value?.voting?.ballotpediaUrl ?? "https://ballotpedia.org/Elections_calendar");
2828
2929
const infoLinks = computed(() => [
3030
{

app/content/elections/ga/2026-midterms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ voting:
99
inPersonVotingAvailable: true
1010
mailBallotsSentAutomatically: false
1111
idUrl: https://sos.ga.gov/page/georgia-voter-identification-requirements
12-
ballotpediaUrl: https://ballotpedia.org/Elections_calendar
12+
ballotpediaUrl: https://ballotpedia.org/Georgia_elections,_2026
1313

1414
early:
1515
url: "https://sos.ga.gov/how-to-guide/how-guide-voting#Early%20Voting"

app/content/procedures/Georgia.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ register:
1616
youth_link: https://sos.ga.gov/how-to-guide/how-guide-registering-vote
1717
felon_link: https://gjp.org/voting/
1818
check_link: https://www.mvp.sos.ga.gov/MVP/mvp.do
19+
more_link: https://sos.ga.gov/how-to-guide/how-guide-registering-vote
1920
mail_in:
2021
any_reason: true
2122
without_notary: true

app/content/procedures/NewJersey.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ register:
88
formerlyIncarcerated: true
99
election_day: false
1010
online: true
11+
more_link: https://www.nj.gov/state/elections/vote.shtml
1112
mail_link: https://www.nj.gov/state/elections/voter-registration.shtml
1213
online_link: https://www.nj.gov/state/elections/voter-registration.shtml
1314
change_party_link: https://www.state.nj.us/state/elections/voter-party-affiliation-declaration.shtml
@@ -18,10 +19,11 @@ register:
1819
check_link: https://voter.svrs.nj.gov/registration-check
1920
mail_in:
2021
any_reason: true
21-
without_notary: false
22+
without_notary: true
2223
id_needed: true
2324
dropoff: true
2425
dropoff_link: https://www.nj.gov/state/elections/vote-by-mail.shtml
2526
request_link: https://www.nj.gov/state/elections/vote-by-mail.shtml
2627
track_link: http://trackmyballot.nj.gov/
2728
more_link: https://www.nj.gov/state/elections/vote-by-mail.shtml
29+
id_link: https://www.nj.gov/state/elections/vote-faq.shtml#faq2-12

0 commit comments

Comments
 (0)