Skip to content

Commit

Permalink
refactor: change useAsReplyTo in snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
nzambello committed Apr 7, 2021
1 parent 9e20e65 commit 6fbb95d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -465,13 +465,15 @@ const Sidebar = ({

{subblock.field_type === 'from' && (
<CheckboxWidget
id="useAsReplyTo"
id="use_as_reply_to"
title={intl.formatMessage(messages.useAsReplyTo)}
description={intl.formatMessage(
messages.useAsReplyTo_description,
)}
value={
subblock.useAsReplyTo ? subblock.useAsReplyTo : false
subblock.use_as_reply_to
? subblock.use_as_reply_to
: false
}
onChange={(name, value) => {
onChangeSubBlock(index, {
Expand Down

0 comments on commit 6fbb95d

Please sign in to comment.