fix: consider null as value in step parameters (#1282)

This commit is contained in:
kattoczko
2023-09-29 16:33:45 +02:00
committed by GitHub
parent 108bd04cf8
commit c77e12edbb
5 changed files with 79 additions and 61 deletions

View File

@@ -255,7 +255,7 @@ function ControlledCustomAutocomplete(
/>
<ActionButtonsWrapper direction="row" mr={1.5}>
{isSingleChoice && serialize(editor.children) && (
{isSingleChoice && serialize(editor.children) !== '' && (
<IconButton
disabled={disabled}
edge="end"