Skip to content

Commit 62055dd

Browse files
authored
fix(#2323): signature field throwing error when value is null (#2328)
1 parent 6f58131 commit 62055dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugin/src/Fields/Implementations/Pro/SignatureField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public function getReadableOutputValue(): Markup|string
146146
);
147147
}
148148

149-
return $image;
149+
return $image ?: '';
150150
}
151151

152152
public function getContentGqlMutationArgumentType(): array|GQLType

0 commit comments

Comments
 (0)