fix bug introduced by #3232 (#3233)

This commit is contained in:
Jonathan Dobson
2025-08-19 15:34:06 -04:00
committed by GitHub
parent fa978bccd7
commit edc9ad726a

View File

@@ -31,9 +31,9 @@ function WorkflowBlockInputTextarea(props: Props) {
const doOnChange = (value: string) => {
onChange(value);
maybeWriteTitle(value);
if (canWriteTitle) {
maybeWriteTitle(value);
maybeAcceptTitle();
}
};