Skip to content

Commit 468a45e

Browse files
committed
NavBar
Fixed action typo Signed-off-by: smarcet <smarcet@gmail.com>
1 parent d14dcd4 commit 468a45e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

navbar/ui/source/actions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const fetchAll = () => (dispatch) => {
5858
let params = {
5959
page: 1,
6060
per_page: 100,
61+
order: 'name',
6162
};
6263

6364
const baseUrl = window.navBarConfig.baseApiUrl;
@@ -66,7 +67,8 @@ export const fetchAll = () => (dispatch) => {
6667
null,
6768
createAction(RECEIVE_SPONSORED_PROJECTS),
6869
`${baseUrl}/api/public/v1/sponsored-projects`,
69-
errorHandler
70+
errorHandler,
71+
params
7072
)({})(dispatch).then(() => {
7173
dispatch(stopLoading());
7274
}

0 commit comments

Comments
 (0)