fixing undefined name and border issues
This commit is contained in:
parent
38fe8375ce
commit
b963bd03e4
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue