mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
bugfix when position of member is null
This commit is contained in:
parent
d50d68aa86
commit
34b3c6fa32
@ -87,10 +87,14 @@ export default {
|
|||||||
currentMembers() {
|
currentMembers() {
|
||||||
let members = this.household.members.filter(m => this.household.current_members_id.includes(m.id))
|
let members = this.household.members.filter(m => this.household.current_members_id.includes(m.id))
|
||||||
.sort((a, b) => {
|
.sort((a, b) => {
|
||||||
if (a.position.ordering < b.position.ordering) {
|
|
||||||
|
const orderA = a.position ? a.position.ordering : 0;
|
||||||
|
const orderB = b.position ? b.position.ordering : 0;
|
||||||
|
|
||||||
|
if (orderA < orderB) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (a.position.ordering > b.position.ordering) {
|
if (orderA > orderB) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (a.holder && !b.holder) {
|
if (a.holder && !b.holder) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user