feat(VnSelect): order data equal salix #918
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#918
Loading…
Reference in New Issue
No description provided.
Delete Branch "warmFix_order_equalSalix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Me lo habían pedido para el desplegable de tipo en el filtro de catálogo (ejemplo: http://localhost:9000/#/order/16/catalog)
Y he visto que Salix si ordenaba pero lilium no y he visto esto:
b926f8f8ad/front/core/components/array-model/array-model.js (L67)
Lo he añadido a VnSelect en principio no debería ir mal pq es tal cual lo que había en salix
@ -0,0 +12,4 @@
}
return data.sort((a, b) => sortFunc(a, b, orderComp));
} else if (typeof order === 'function') return data.sort(data);
Para ayudar en la legibilidad, mover esta linea a antes del segundo if
@ -0,0 +17,4 @@
}
function sortFunc(a, b, order) {
for (let i of order) {
let {field, way} ??