Skip to content

Commit

Permalink
Merge pull request #1367 from culturecreates/bugfix/issue-40
Browse files Browse the repository at this point in the history
fix: Wrong font param in src url during initial render
  • Loading branch information
saumier authored Sep 27, 2024
2 parents 7a260df + 45beca4 commit b2a52cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ const WidgetSettings = ({ setDirtyStatus, tabKey }) => {
name="font"
required
label={t(`${localePath}.font`)}
initialValue={widgetFontCollection[0]}
initialValue={widgetFontCollection[0]?.value ?? 'Roboto'}
data-cy="widget-settings-font">
<SelectOption
data-cy="widget-settings-font-dropdown"
Expand Down

0 comments on commit b2a52cf

Please sign in to comment.