Browse Source

[producer] Correctif bug affichage iPhone

prodstable
Guillaume 4 years ago
parent
commit
e4e23f9abf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      producer/web/js/vuejs/order-order.js

+ 1
- 1
producer/web/js/vuejs/order-order.js View File

}, },
dayClickList: function(event) { dayClickList: function(event) {
var dateStr = event.currentTarget.getAttribute('data-distribution-date') ; var dateStr = event.currentTarget.getAttribute('data-distribution-date') ;
var dateObject = Date.parse(String(dateStr+""));
var dateObject = new Date(dateStr) ;
if(this.isAvailableDate(dateObject)) { if(this.isAvailableDate(dateObject)) {
this.dayClickEvent(dateObject) ; this.dayClickEvent(dateObject) ;
} }

Loading…
Cancel
Save