Selaa lähdekoodia

[MIN] Fix List Renderer (#4652)

* fixed multiple dialog render

* minor fix list renderer
version-14
Achilles Rasquinha 7 vuotta sitten
committed by Nabin Hait
vanhempi
commit
41d2f92cfb
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. +2
    -1
      frappe/public/js/frappe/list/list_renderer.js

+ 2
- 1
frappe/public/js/frappe/list/list_renderer.js Näytä tiedosto

@@ -325,7 +325,8 @@ frappe.views.ListRenderer = Class.extend({
}

var link = $(this).parent().find('a.list-id').get(0);
window.location.href = link.href;
if ( link && link.href )
window.location.href = link.href;
return false;
});
},


Ladataan…
Peruuta
Tallenna