Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
- description for “Funding setup requested”
- alphabetize data dictionary
  • Loading branch information
mateoclarke committed Dec 30, 2024
1 parent ea5ed9e commit faa2ac5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SET "funding_status_description" = CASE "funding_status_name"
WHEN 'Tentative' THEN 'In conversation about possible funding commitment'
WHEN 'Confirmed' THEN 'Commitment to funding'
WHEN 'Available' THEN 'Funding is available, e.g. private developer'
WHEN 'Funding setup requested' THEN NULL
WHEN 'Funding setup requested' THEN 'Requested that funding be set up in eCAPRIS'
WHEN 'Set up' THEN 'Funding has been set up in eCAPRIS; has FDU'
ELSE "funding_status_description"
END;
36 changes: 18 additions & 18 deletions moped-editor/src/views/dev/LookupsView/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,24 @@ export const SETTINGS = [
},
],
},
{
key: "moped_fund_status",
label: "Fund Status",
columns: [
{
key: "funding_status_id",
label: "Status ID",
},
{
key: "funding_status_name",
label: "Name",
},
{
key: "funding_status_description",
label: "Description",
},
],
},
{
key: "moped_milestones",
label: "Milestones",
Expand Down Expand Up @@ -223,22 +241,4 @@ export const SETTINGS = [
},
],
},
{
key: "moped_fund_status",
label: "Fund Status",
columns: [
{
key: "funding_status_id",
label: "Status ID",
},
{
key: "funding_status_name",
label: "Name",
},
{
key: "funding_status_description",
label: "Description",
},
],
},
];

0 comments on commit faa2ac5

Please sign in to comment.