Skip to content

Commit

Permalink
fix: lower case before sort
Browse files Browse the repository at this point in the history
  • Loading branch information
dukenv0307 committed Apr 26, 2023
1 parent 3bc9d8b commit a7d8774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/WorkspacesListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class WorkspacesListPage extends Component {
dismissError: () => dismissWorkspaceError(policy.id, policy.pendingAction),
disabled: policy.pendingAction === CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
}))
.sortBy(policy => policy.title)
.sortBy(policy => policy.title.toLowerCase())
.value();
}

Expand Down

0 comments on commit a7d8774

Please sign in to comment.