1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

new render wrapper - bug fix

This commit is contained in:
Michael Shanks 2020-01-28 14:09:46 +00:00
parent 44e71ea967
commit 879308d0d7
2 changed files with 9 additions and 2 deletions

View file

@ -35,7 +35,11 @@ export const loadBudibase = async ({
props = appDefinition.props;
}
const _app = createApp(componentLibraries, appDefinition, user, uiFunctions);
const _app = createApp(
componentLibraries,
appDefinition,
user,
uiFunctions || {});
_app.hydrateChildren(
[props],
window.document.body);

View file

@ -4,7 +4,10 @@ export const renderComponent = ({
htmlElement, anchor, parentContext,
componentProps}) => {
const func = uiFunctions[componentProps._id];
const func = componentProps._id
? uiFunctions[componentProps._id]
: undefined;
let component;
let componentContext;
const render = (context) => {