Commit 2f3a0040 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'export-default-in-vuex-shared-modal-actions' into 'master'

Export default in vuex_shared/modal/actions

See merge request gitlab-org/gitlab-ce!24435
parents c01f6736 ff1b4428
...@@ -15,3 +15,6 @@ export const show = ({ commit }) => { ...@@ -15,3 +15,6 @@ export const show = ({ commit }) => {
export const hide = ({ commit }) => { export const hide = ({ commit }) => {
commit(types.HIDE); commit(types.HIDE);
}; };
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment