From 81c83d4902cb6044bbed061959fe7e7c106860ed Mon Sep 17 00:00:00 2001 From: troneras Date: Wed, 21 Aug 2024 02:20:12 +0200 Subject: [PATCH] Change quotes with scape characters --- ui/components/ActionForm.tsx | 2 +- ui/components/SonDetailsForm.tsx | 9 ++++----- ui/pages/sons/[id].tsx | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ui/components/ActionForm.tsx b/ui/components/ActionForm.tsx index c1c97f8..576806e 100644 --- a/ui/components/ActionForm.tsx +++ b/ui/components/ActionForm.tsx @@ -91,7 +91,7 @@ export function ActionForm({

This action will automatically create the subscriber on - listmonk if he doesn't exist already. + listmonk if he doesn't exist already.

Subscribers will be automatically added or removed to lists with the same name as the newsletters on Ghost. diff --git a/ui/components/SonDetailsForm.tsx b/ui/components/SonDetailsForm.tsx index f78f6a2..a6dbcbf 100644 --- a/ui/components/SonDetailsForm.tsx +++ b/ui/components/SonDetailsForm.tsx @@ -76,13 +76,12 @@ export function SonDetailsForm({ form }: SonDetailsFormProps) { Delay - + - 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. diff --git a/ui/pages/sons/[id].tsx b/ui/pages/sons/[id].tsx index 9357754..9de07d5 100644 --- a/ui/pages/sons/[id].tsx +++ b/ui/pages/sons/[id].tsx @@ -57,7 +57,7 @@ const SonDetailPage: NextPageWithExtras = () => { defaultValues: { name: "", trigger: "member_created", - delay: 0, + delay: "0", actions: [], }, });