From e98b40411d89b9eff5476489bb45e3b52a76915c Mon Sep 17 00:00:00 2001 From: Doug Pilcher Date: Tue, 9 Sep 2025 13:57:50 -0500 Subject: [PATCH 1/2] replace pm2 watch --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: { From d3327d2930f183a9ec739aa1679cdc791414c1f9 Mon Sep 17 00:00:00 2001 From: Doug Pilcher Date: Wed, 10 Sep 2025 10:55:05 -0500 Subject: [PATCH 2/2] add inherit formatting to numbered heading component block --- componentBlocks.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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" }), }, }),