mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Added hint to Reply-To field in newsletter detail modal (#19209)
ref GRO-110
This commit is contained in:
parent
226900f040
commit
2809703c76
1 changed files with 7 additions and 1 deletions
|
@ -73,11 +73,17 @@ const ReplyToEmailField: React.FC<{
|
|||
setSenderReplyTo(rendered);
|
||||
};
|
||||
|
||||
const hint = (
|
||||
<>
|
||||
If not set, replies go to the sender email address
|
||||
</>
|
||||
);
|
||||
|
||||
// Pro users without custom sending domains
|
||||
return (
|
||||
<TextField
|
||||
error={Boolean(errors.sender_reply_to)}
|
||||
hint={errors.sender_reply_to}
|
||||
hint={errors.sender_reply_to || hint}
|
||||
placeholder={''}
|
||||
title="Reply-to email"
|
||||
value={senderReplyTo}
|
||||
|
|
Loading…
Add table
Reference in a new issue