Return nullish button action function for empty arrays
This commit is contained in:
parent
6b8bf3f768
commit
bb9146b93f
|
@ -334,8 +334,8 @@ const confirmTextMap = {
|
||||||
*/
|
*/
|
||||||
export const enrichButtonActions = (actions, context) => {
|
export const enrichButtonActions = (actions, context) => {
|
||||||
// Prevent button actions in the builder preview
|
// Prevent button actions in the builder preview
|
||||||
if (!actions || get(builderStore).inBuilder) {
|
if (!actions?.length || get(builderStore).inBuilder) {
|
||||||
return () => {}
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
// If this is a function then it has already been enriched
|
// If this is a function then it has already been enriched
|
||||||
|
|
Loading…
Reference in New Issue