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