Friday, May 23, 2025
2 changes · saas-18.2
Resolved issues and error corrections
The exhibitor “More Info” button now opens correctly for website visitors instead of showing an error, including when debug mode is enabled. The exhibitor page also avoids showing empty parentheses when no timezone label is needed, making the event information cleaner for visitors.
Original PR description
**Steps to reproduce**: 1. Install the website_event app 2. Enable Online Exhibitors in settings 3. Open any upcoming event and check website submenu and showcase exhibitors 4. Click on the sponsor…
**Steps to reproduce**: 1. Install the website_event app 2. Enable Online Exhibitors in settings 3. Open any upcoming event and check website submenu and showcase exhibitors 4. Click on the sponsor smart button 5. Create a new sponsor with type 'Exhibitor' 6. Now click on Go to website smart button and make it publish 7. Open private window in browser and go to exhibitor page by cliking on 8. Go to Event > Modified upcoming event > exhibitors submenu 9. Now click on more info button inside the exhibitor card 10. Observe the console error or Error if Debug mode is on. **Issue**: - The dialog displayed for non-event managers attempts to use t-options within a <span> tag, causing Unknown QWeb directive error. - Missing prop error in Debug mode **Solution**: - Replace the t-options logic with a dedicated property of the object with correct format of date_begin field - Add close prop in ExhibitorConnectClosedDialog **UI Improvement:** - notice on the next exhibitor page we're displaying: ```<span>(<t t-if="website_visitor_timezone != sponsor.event_id.date_tz" t-out="event.date_tz"/>)</span>``` It would be nice to remove the parentheses when the condition doesn't pass, as it currently results in empty brackets () being shown opw-4737183
The chatter activity list layout has been adjusted so activity avatars line up consistently with message avatars. This creates a cleaner, more polished view and makes the activity and message sections feel visually consistent.
Original PR description
This commit changes the activity component sidebar structure to match the message sidebar's. This is done to make sure the avatars in the chatter are all horizontally aligned. This commit also adds padding to the Activities separator/dropdown to align with the messages date separator. Before:  After: 