Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutations.js « store « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3acd07f89fa2d271826e2429520245c5338dac9 (plain)
1
2
3
4
5
6
7
import { SET_ERROR_MESSAGE } from './mutation_types';

export default {
  [SET_ERROR_MESSAGE](state, errorMessage) {
    state.errorMessage = errorMessage;
  },
};