|
@@ -21,7 +21,7 @@ export const getSummary: () => Promise<BillboardType[]> = () =>
|
|
},
|
|
},
|
|
})
|
|
})
|
|
.then((res: BillboardType[]) => {
|
|
.then((res: BillboardType[]) => {
|
|
- return res.sort((r) => {
|
|
|
|
|
|
+ return res.reverse().sort((r) => {
|
|
return r.orgname ? -1 : 1;
|
|
return r.orgname ? -1 : 1;
|
|
});
|
|
});
|
|
});
|
|
});
|