Jaime Sangcap
Jaime Sangcap
Thank you for super quick response 😄 I'm just new to js/nodejs/npm world but I'm very willing to take a stab on this one.
the postinstall works now, I've used lerna without yarn workspace integration. I will send a PR for the docs
I see, I think we have the same setup. I'm keeping an eye with this pull request from the `react-app-rewire` repo. https://github.com/timarney/react-app-rewired/pull/109. Any thoughts?
I have the same issue, I'm trying to set the value of an input text inside a modal. The calendar picker is working (it displays good) but the default date...
thanks, got it working now. It also accepts momentjs format ``` $(function() { $("#ApproveButton").click(function(e) { var $modal = $("#ApproveExtensionModal"); var deadline = moment.tz($(this).data("deadline"), "Asia/Dubai").format(); $modal.modal({ onShow: function() { $('#Deadline').calendar("set date",...