summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/contributors/stores/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/contributors/stores/index.js')
-rw-r--r--app/assets/javascripts/contributors/stores/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/contributors/stores/index.js b/app/assets/javascripts/contributors/stores/index.js
index 38259f46d4c..a4d0004cee5 100644
--- a/app/assets/javascripts/contributors/stores/index.js
+++ b/app/assets/javascripts/contributors/stores/index.js
@@ -7,12 +7,12 @@ import state from './state';
Vue.use(Vuex);
-export const createStore = () =>
+export const createStore = (defaultBranch) =>
new Vuex.Store({
actions,
mutations,
getters,
- state: state(),
+ state: state(defaultBranch),
});
-export default createStore();
+export default createStore;