Explorar el Código

[Backend] Documents : correctif Vuejs getProductById()

feature/souke
Guillaume hace 1 año
padre
commit
96fb9d552d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      backend/web/js/vuejs/document-form.js

+ 1
- 1
backend/web/js/vuejs/document-form.js Ver fichero

@@ -98,7 +98,7 @@ var app = new Vue({
getProductById: function(idProduct) {
var app = this;

for(var i = 0; i <= Object.keys(this.productsArray).length ; i++) {
for(var i = 0; i <= Object.keys(this.productsArray).length + 1 ; i++) {
if(app.productsArray[i] && app.productsArray[i].id == idProduct) {
return app.productsArray[i];
}

Cargando…
Cancelar
Guardar