Skip to content

Commit

Permalink
update how we add item.body text
Browse files Browse the repository at this point in the history
  • Loading branch information
claireolmstead committed Nov 12, 2024
1 parent a92d51d commit 3cf9918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sections/Mission/MissionItems.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
{#each missionItems as item}
<MissionItem>
<span slot="icon"><img src={item.icon} alt={item.iconAlt} /></span>
<p slot="body">{@html item.body}</p>
<p slot="body" bind:innerHTML={item.body} contenteditable="true"></p>
</MissionItem>
{/each}
</div>

0 comments on commit 3cf9918

Please sign in to comment.