diff --git a/apps/backend/src/mutations/FapMutations.ts b/apps/backend/src/mutations/FapMutations.ts index a81e0b1709..35c0ef9677 100644 --- a/apps/backend/src/mutations/FapMutations.ts +++ b/apps/backend/src/mutations/FapMutations.ts @@ -635,7 +635,7 @@ export default class FapMutations { }); } - @Authorized([Roles.USER_OFFICER]) + @Authorized([Roles.USER_OFFICER, Roles.FAP_CHAIR, Roles.FAP_SECRETARY]) @EventBus(Event.PROPOSAL_FAP_MEETING_REORDER) async reorderFapMeetingDecisionProposals( agent: UserWithRole | null, diff --git a/apps/frontend/src/components/fap/MeetingComponents/FapInstrumentProposalsTable.tsx b/apps/frontend/src/components/fap/MeetingComponents/FapInstrumentProposalsTable.tsx index 27ee431986..c0f1b646bf 100644 --- a/apps/frontend/src/components/fap/MeetingComponents/FapInstrumentProposalsTable.tsx +++ b/apps/frontend/src/components/fap/MeetingComponents/FapInstrumentProposalsTable.tsx @@ -328,7 +328,7 @@ const FapInstrumentProposalsTable = ({ typeof a.proposalAverageScore === 'number' && typeof b.proposalAverageScore === 'number' ) { - return a.proposalAverageScore > b.proposalAverageScore ? 1 : -1; + return a.proposalAverageScore < b.proposalAverageScore ? 1 : -1; } else { return -1; }