Change quotes with scape characters
This commit is contained in:
parent
ff5b39241a
commit
81c83d4902
3 changed files with 6 additions and 7 deletions
|
|
@ -91,7 +91,7 @@ export function ActionForm({
|
|||
<FormDescription>
|
||||
<p>
|
||||
This action will automatically create the subscriber on
|
||||
listmonk if he doesn't exist already.
|
||||
listmonk if he doesn't exist already.
|
||||
</p>
|
||||
Subscribers will be automatically added or removed to lists
|
||||
with the same name as the newsletters on Ghost.
|
||||
|
|
|
|||
|
|
@ -76,13 +76,12 @@ export function SonDetailsForm({ form }: SonDetailsFormProps) {
|
|||
<FormItem>
|
||||
<FormLabel>Delay</FormLabel>
|
||||
<FormControl>
|
||||
<Input
|
||||
{...field}
|
||||
placeholder="e.g., 30m, 2h, 1d, 1w"
|
||||
/>
|
||||
<Input {...field} placeholder="e.g., 30m, 2h, 1d, 1w" />
|
||||
</FormControl>
|
||||
<FormDescription>
|
||||
Set a delay before the Son executes its actions. Use format like "30m" for 30 minutes, "2h" for 2 hours, "1d" for 1 day, or "1w" for 1 week.
|
||||
Set a delay before the Son executes its actions. Use format like
|
||||
"30m" for 30 minutes, "2h" for 2 hours,
|
||||
"1d" for 1 day, or "1w" for 1 week.
|
||||
</FormDescription>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ const SonDetailPage: NextPageWithExtras = () => {
|
|||
defaultValues: {
|
||||
name: "",
|
||||
trigger: "member_created",
|
||||
delay: 0,
|
||||
delay: "0",
|
||||
actions: [],
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue