parent
f272433019
commit
832694a311
|
@ -497,7 +497,15 @@ const Dashboard = () => {
|
||||||
})
|
})
|
||||||
.filter((e) => {
|
.filter((e) => {
|
||||||
return e.name.toLowerCase().includes(search);
|
return e.name.toLowerCase().includes(search);
|
||||||
})
|
}).sort((a) => {
|
||||||
|
if (a.statusOnline) {
|
||||||
|
if (a.statusOnline.status === "online") {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
})
|
||||||
.map((user, index) => (
|
.map((user, index) => (
|
||||||
<Grid
|
<Grid
|
||||||
item
|
item
|
||||||
|
|
Loading…
Reference in New Issue