Skip to content

Commit

Permalink
fix(notifications): Fixing custom message text shape (#7349)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmquach committed Aug 20, 2019
1 parent 47a8002 commit a7896bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class NotificationDetails extends React.Component<INotificationDetailsPro
if (whenOption !== 'manualJudgment' && ['email', 'slack', 'googlechat'].includes(type)) {
return (
<FormikFormField
name={'message.' + whenOption + '.text'}
name={`message["${whenOption}"].text`}
input={props => <TextAreaInput {...props} placeholder="enter a custom notification message (optional)" />}
/>
);
Expand Down

0 comments on commit a7896bf

Please sign in to comment.