Looking at the screenshot, I can see the KEY MESSAGES section displays all messages concatenated together as one long string without any separation: "testtesttesttesttesttesttestclarificationclarification". This should instead display as separate, formatted list items like they appear in the content tab.
Let me check how key messages are currently displayed in the summary:
I can see the issue. The summary display code (lines 1430-1450) already has the correct structure to display key messages as a list with numbered badges. However, the issue is likely that brandMessaging.keyMessages is being displayed in a different section that's concatenating them together. Let me check the Brand Messaging section display more carefully:
I found the problem! In the Brand Messaging section (lines 1289-1302), the code uses Object.entries() to iterate through all brandMessaging properties, including keyMessages. When it encounters the keyMessages array on line 1298, it displays it as {value} which converts the array to a string, concatenating all messages together without spaces.
The fix is to exclude keyMessages from the Brand Messaging display since they already have their own dedicated section below. I need to update the condition on line 1291 to skip keyMessages:
I've fixed the key messages display issue by excluding keyMessages from the Brand Messaging section's Object.entries loop. The array was being converted to a concatenated string when displayed as {value}, which caused all messages to run together. Now the key messages only appear in their dedicated section below, where they're properly displayed as numbered list items with proper formatting and spacing.
I'll compare all the dashboard features with what's displayed on the summary page to identify any gaps. Let me check both:
Now let me check the content section and tasks section to see if they're also in the summary:
Let me check if Assets and Tasks sections exist in the summary:
Good, Assets section exists. Now let me check for Tasks:
Let me search for a Tasks section specifically in the summary:
Based on my comprehensive review of the dashboard and summary page, here's the complete comparison:
Features CURRENTLY DISPLAYED in Summary:
Features MISSING from Summary:
The Tasks section is tracked in the dashboard (shows completion status in the home card), but there's no corresponding section in the design summary to display the actual tasks and their details. This is the only major dashboard feature not reflected in the summary.