summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/stores/modules/index/actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/releases/stores/modules/index/actions.js')
-rw-r--r--app/assets/javascripts/releases/stores/modules/index/actions.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/releases/stores/modules/index/actions.js b/app/assets/javascripts/releases/stores/modules/index/actions.js
index 00be25f089b..d3bb11cab30 100644
--- a/app/assets/javascripts/releases/stores/modules/index/actions.js
+++ b/app/assets/javascripts/releases/stores/modules/index/actions.js
@@ -1,4 +1,4 @@
-import { deprecatedCreateFlash as createFlash } from '~/flash';
+import createFlash from '~/flash';
import { __ } from '~/locale';
import { PAGE_SIZE } from '~/releases/constants';
import allReleasesQuery from '~/releases/graphql/queries/all_releases.query.graphql';
@@ -57,7 +57,9 @@ export const fetchReleases = ({ dispatch, commit, state }, { before, after }) =>
export const receiveReleasesError = ({ commit }) => {
commit(types.RECEIVE_RELEASES_ERROR);
- createFlash(__('An error occurred while fetching the releases. Please try again.'));
+ createFlash({
+ message: __('An error occurred while fetching the releases. Please try again.'),
+ });
};
export const setSorting = ({ commit }, data) => commit(types.SET_SORTING, data);