-
Notifications
You must be signed in to change notification settings - Fork 5
Migration guide
kopecmi8 edited this page Feb 7, 2022
·
1 revision
- Replace
this.name = "Name"
withthis.nameValue= "Name"
- Inside custom RequestBuilders replace
appendAcceptJsonHeader(this.params)
withappendAcceptHeader(this.params, ContentTypes.json)
- Be aware for bug https://github.com/eManPrague/frui.ts/issues/49 inside app.tsx In case of some condition there is problem with rootView.
function renderViewModel(viewModel: any) {
// TODO Remove key workaround after update to version 0.17.x
ReactDOM.render(<View vm={viewModel} useLifecycle key={Math.random()} />, document.getElementById("root"));
}