YCloudYUSA / yusaopeny_gated_content

Y USA Virtual YMCA
https://ds.ymca.org
GNU General Public License v3.0
2 stars 8 forks source link

Virtual Meeting/Live Stream Description missing in D10 #70

Closed froboy closed 10 months ago

froboy commented 10 months ago

on such pages(see screen 1) we have no description. After some investigation I see that the reason of this is here: docroot/modules/contrib/yusaopeny_gated_content/js/gated-content/src/views/VirtualMeetingPage.vue on line 190 we have code: return this.description ? this.description.processed : ''; But after checking the json of the page I see that in the description we have an array(screenshot 2) so the this code should be like this: return this.description ? this.description[0].processed : '';

image image

froboy commented 10 months ago

Resolved by #71