mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 11:55:01 +03:00
Added hint to Reply-To field in newsletter detail modal (#19209)
ref GRO-110
This commit is contained in:
parent
226900f040
commit
2809703c76
@ -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…
Reference in New Issue
Block a user