mirror of
https://github.com/System-End/site.git
synced 2026-04-19 19:45:07 +00:00
Only pull specific list of fields for cohort project data
This commit is contained in:
parent
070ee7a21b
commit
41aa91cd06
1 changed files with 3 additions and 1 deletions
|
|
@ -32,8 +32,10 @@ async function getShowcases(cohort) {
|
|||
]
|
||||
|
||||
const showcases = await airtable.read({
|
||||
filterByFormula: `OR(${showcaseFormula.join(', ')})`
|
||||
filterByFormula: `OR(${showcaseFormula.join(', ')})`,
|
||||
fields: ['Name', 'Code Link', 'Play Link', 'Description', 'color', 'textColor', 'ScreenshotLink', 'ReadMeLink', 'View link'],
|
||||
})
|
||||
|
||||
return showcases
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue