Arokia Lijas

Results 4 comments of Arokia Lijas

``` 1. If 'ngx-datatable-column' is an Angular component and it has 'width' input, then verify that it is part of this module. 2. If 'ngx-datatable-column' is a Web Component then...

@jbrumwell , Can you look into it when you get a chance?

```javascript const startDate = moment(event.start).format(CUSTOM_DATE_FORMAT); const endDate = moment(event.end).format(CUSTOM_DATE_FORMAT); ``` The above line is the problem. I changed it to ```javascript const startDate = new Date(event.start); const endDate = new...