Skip to content

Commit

Permalink
update sort
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidNic11 committed Jan 29, 2025
1 parent bc90e31 commit c370c51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/jira-oidc-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,9 @@ export default function JiraOIDCHelpers({ JIRA_CLIENT_ID, JIRA_SCOPE, JIRA_CALLB
if (a?.scope && !b?.scope) {
return 1;
}

if (b?.scope && !a?.scope) {
return 1;
return -1;
}

return 0;
Expand Down

0 comments on commit c370c51

Please sign in to comment.