Przeglądaj źródła

[MIN] Fix List Renderer (#4652)

* fixed multiple dialog render

* minor fix list renderer
version-14
Achilles Rasquinha 7 lat temu
committed by Nabin Hait
rodzic
commit
41d2f92cfb
1 zmienionych plików z 2 dodań i 1 usunięć
  1. +2
    -1
      frappe/public/js/frappe/list/list_renderer.js

+ 2
- 1
frappe/public/js/frappe/list/list_renderer.js Wyświetl plik

@@ -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;
});
},


Ładowanie…
Anuluj
Zapisz