Explorar el Código

minor fix

version-14
Zlash65 hace 7 años
padre
commit
817cc2927a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      frappe/public/js/frappe/form/controls/multicheck.js

+ 1
- 1
frappe/public/js/frappe/form/controls/multicheck.js Ver fichero

@@ -18,7 +18,7 @@ frappe.ui.form.ControlMultiCheck = frappe.ui.form.Control.extend({
refresh_input() {
this.options.map(option => option.value).forEach(value => {
$(this.wrapper)
.find(`:checkbox[data-unit=${value}]`)
.find(`:checkbox[data-unit="${value}"]`)
.prop("checked", this.selected_options.includes(value));
});
},


Cargando…
Cancelar
Guardar