From f27c5b978a1b47e805ff9de525300ad2314aa749 Mon Sep 17 00:00:00 2001 From: Jake Hasler Date: Mon, 14 Aug 2023 16:45:49 -0600 Subject: [PATCH] Allowing for placeholders with apostrophes --- src/constants/editor/create_quill.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/editor/create_quill.ts b/src/constants/editor/create_quill.ts index 4efae28..67a8e8d 100644 --- a/src/constants/editor/create_quill.ts +++ b/src/constants/editor/create_quill.ts @@ -45,7 +45,7 @@ export const create_quill = ({ ${customJS} var quill = new Quill('#${id}', { modules: { ${modules} }, - placeholder: '${placeholder}', + placeholder: "${placeholder}", theme: '${theme}' });