This commit is contained in:
Simon Knott 2024-10-04 12:20:50 +02:00
parent 0deae3d1b4
commit 97c4582c97
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -188,7 +188,7 @@ function __pwWrapFunctions(slots) {
for (const [key, value] of Object.entries(slots || {}))
slotsWithRenderFunctions[key] = () => [value];
} else if (slots?.length) {
slots['default'] = () => slots;
slotsWithRenderFunctions['default'] = () => slots;
}
return slotsWithRenderFunctions;
}