fixing undefined name and border issues

This commit is contained in:
Peter Clement 2023-10-30 12:55:24 +00:00
parent 38fe8375ce
commit b963bd03e4
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,7 @@
on:blur={async () => { on:blur={async () => {
typing = false typing = false
if (automationNameError) { if (automationNameError) {
automationName = stepNames[block.id] automationName = stepNames[block.id] || block?.name
} else { } else {
await saveName() await saveName()
} }
@ -224,6 +224,7 @@
.blockSection { .blockSection {
padding: var(--spacing-xl); padding: var(--spacing-xl);
border: 1px solid transparent;
} }
.blockTitle { .blockTitle {