I have a notification widget in React that looks like below, where the content of the notification comes from the object props. Under previous versions, this worked just fine. As of v5.5.0, the hard-coded text “Message:” is displayed, but the content from the object props is gone.
class App extends React.Component {
render () {
return (
<JqxNotification width={100} height={100}>
<div>
Message: {this.props.notificationText}
</div>
</JqxNotification>
)
}
}
I see that v5.5.0 has caused other bugs with the notification widget, ala
https://www.jqwidgets.com/community/topic/change-template-leads-notification-content-duplicated/
https://www.jqwidgets.com/community/topic/jqxnotification-kills-browser-on-version-5-5-0/
I hope your pending fix will correct this situation in my case as well. If you aren’t releasing a fixed package ASAP, why not provide patches?