Skip to content
Snippets Groups Projects
Commit 5d95ec2e authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'redmine-issue/14479' into 'develop'

REDMINE_ISSUE-14479 | Page membres - message de confirmation arrive tard

See merge request geocontrib/geocontrib-frontend!454
parents 09dfc50a 461cd218
No related branches found
No related tags found
No related merge requests found
......@@ -301,6 +301,11 @@ export default {
},
saveMembers() {
this.$store.commit(
'DISPLAY_LOADER',
'Mise à jour des membres du projet en cours ...'
);
const data = this.projectUsers.map((member) => {
return {
user: member.user,
......@@ -329,8 +334,10 @@ export default {
}
);
}
this.$store.commit('DISCARD_LOADER');
})
.catch((error) => {
this.$store.commit('DISCARD_LOADER');
throw error;
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment