Browse Source

[producer] Correctif bug affichage iPhone

master
Guillaume 4 years ago
parent
commit
9057f54872
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

@@ -214,7 +214,7 @@ var app = new Vue({
},
dayClickList: function(event) {
var dateStr = event.currentTarget.getAttribute('data-distribution-date') ;
var dateObject = new Date(dateStr) ;
var dateObject = new Date(dateStr.replace(/-/g, "/")) ;
if(this.isAvailableDate(dateObject)) {
this.dayClickEvent(dateObject) ;
}

Loading…
Cancel
Save