Skip to content
kopecmi8 edited this page Feb 7, 2022 · 1 revision

From 0.16.x to 0.17.x

  • Replace this.name = "Name" with this.nameValue= "Name"

From 0.15.0 to 0.16.x

  • Inside custom RequestBuilders replace appendAcceptJsonHeader(this.params) with appendAcceptHeader(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"));
}