fix(sponsorList): correct property name for special sponsors display
The display page was referencing an incorrect property `specialSponsor` instead of `specialSponsors`, causing the list not to render. This has been corrected. Additionally, the sponsor data file has been updated with new entries and corrections, including moving '地南祥子' from a table sponsor to a cash donation.
This commit is contained in:
@@ -269,7 +269,7 @@
|
||||
}
|
||||
const sponsorListJsonData = await sponsorListResult.json();
|
||||
eventTitle.value = sponsorListJsonData.eventTitle || "活动名称";
|
||||
specialSponsor.value = sponsorListJsonData.specialSponsor || "";
|
||||
specialSponsor.value = sponsorListJsonData.specialSponsors || "";
|
||||
logos.value = sponsorListJsonData.logos || [];
|
||||
|
||||
sponsorList.value = (
|
||||
|
||||
Reference in New Issue
Block a user