Commit 08438666 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents ad1b9925 5e53f255
......@@ -186,7 +186,7 @@ Remember that actions only describe that something happened, they don't describe
state.users.push(user);
},
[types.REQUEST_ADD_USER_ERROR](state, error) {
state.isAddingUser = true;
state.isAddingUser = false;
state.errorAddingUser = error;
},
};
......@@ -231,7 +231,7 @@ The store should be included in the main component of your application:
```javascript
// app.vue
import store from 'store'; // it will include the index.js file
import store from './store'; // it will include the index.js file
export default {
name: 'application',
......
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