diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7e97929..4954f75 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,7 +26,7 @@ jobs: name: "${{ secrets.PM2_APPNAME }}", script: "npm", args: "start", - watch: false, + watch: true, autorestart: true, restart_delay: 1000, env: { diff --git a/componentBlocks.tsx b/componentBlocks.tsx index 322fa08..23452b8 100644 --- a/componentBlocks.tsx +++ b/componentBlocks.tsx @@ -230,7 +230,11 @@ export const componentBlocks = { }, label: "Numbered Heading", schema: { - text: fields.child({ kind: "inline", placeholder: "Title" }), + text: fields.child({ + kind: "inline", + formatting: "inherit", + placeholder: "Title", + }), number: fields.child({ kind: "inline", placeholder: "1" }), }, }),