Skip to content

Commit

Permalink
Add comma
Browse files Browse the repository at this point in the history
  • Loading branch information
oakesjosh committed Jan 2, 2025
1 parent 3a9ea91 commit 2bcb493
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function AutoEmailOptions({ settings, save }) {
/>
<ToggleControl
label={__('Send as HTML email?', 'kadence-blocks')}
help={__('If off plain text is used.', 'kadence-blocks')}
help={__('If off, plain text is used.', 'kadence-blocks')}
checked={undefined !== settings && undefined !== settings.html ? settings.html : true}
onChange={(value) => save({ html: value })}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/advanced-form/edit-inner.js
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ export function EditInner(props) {
/>
<ToggleControl
label={__('Send as HTML email?', 'kadence-blocks')}
help={__('If off plain text is used.', 'kadence-blocks')}
help={__('If off, plain text is used.', 'kadence-blocks')}
checked={undefined !== email.html ? email.html : true}
onChange={(value) => setMetaAttribute({ ...email, html: value }, 'email')}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/form/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2555,7 +2555,7 @@ function KadenceForm(props) {
/>
<ToggleControl
label={__('Send as HTML email?', 'kadence-blocks')}
help={__('If off plain text is used.', 'kadence-blocks')}
help={__('If off, plain text is used.', 'kadence-blocks')}
checked={undefined !== email[0].html ? email[0].html : true}
onChange={(value) => saveEmail({ html: value })}
/>
Expand Down

0 comments on commit 2bcb493

Please sign in to comment.