-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from wri/feat/TM-1675-projects-reports-airtabl…
…e-update [TM-1675] Update some columns on project and project-report.
- Loading branch information
Showing
11 changed files
with
74 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
export const FRAMEWORK_NAMES = { | ||
terrafund: "TerraFund Top 100", | ||
"terrafund-landscapes": "TerraFund Landscapes", | ||
ppc: "Priceless Planet Coalition (PPC)", | ||
enterprises: "TerraFund Enterprises", | ||
hbf: "Harit Bharat Fund", | ||
"epa-ghana-pilot": "EPA-Ghana Pilot" | ||
} as const; | ||
|
||
export const FRAMEWORK_KEYS = Object.keys(FRAMEWORK_NAMES); | ||
export type FrameworkKey = keyof typeof FRAMEWORK_NAMES; | ||
export const FRAMEWORK_KEYS = [ | ||
"terrafund", | ||
"terrafund-landscapes", | ||
"ppc", | ||
"enterprises", | ||
"hbf", | ||
"epa-ghana-pilot" | ||
] as const; | ||
export type FrameworkKey = (typeof FRAMEWORK_KEYS)[number]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters