mirror of
https://github.com/ivabus/www
synced 2024-11-10 06:45:16 +03:00
fix: description value should be ok prop
This commit is contained in:
parent
0467487d57
commit
8319762a1e
|
@ -26,7 +26,7 @@ export const getAllAirtablePackages = async (): Promise<AirtablePackage[]> => {
|
|||
'full_name',
|
||||
]),
|
||||
maintainer: record.fields?.maintainer || '',
|
||||
desc: record.fields?.description || '',
|
||||
desc: record.fields?.desc || '',
|
||||
thumb_image_url: _.get(record.fields, 'thumb_image[0].url', '/Images/package-thumb-nolabel3.jpg')
|
||||
} as AirtablePackage;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue