[aidan] feat/scheduled-tasks: keep step labels in sync on edit and show chevron on every step

This commit is contained in:
abccodes
2026-06-16 00:06:59 -07:00
parent e8b1cf3b87
commit 43ffe63b31
2 changed files with 29 additions and 1 deletions
@@ -85,7 +85,7 @@ export default function StepList(props: Props) {
const isExpanded = expanded.has(s.id);
const label = (s.label || '').trim() || firstWords(s.text, 6);
const rawBody = (s.text || '').trim();
const hasExpandableBody = expandable && rawBody && rawBody !== label;
const hasExpandableBody = Boolean(expandable && rawBody);
return (
<Box key={s.id} sx={{ display: 'flex', flexDirection: 'column' }}>