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: 2a25e0fe25f07ee64d68d388ae2dbbefe71a7de1 (plain)
1
2
3
4
5
6
7
import { SET_ALERT } from './mutation_types';

export default {
  [SET_ALERT](state, { title, message, variant, linkUrl } = {}) {
    state.alert = { title, message, variant, linkUrl };
  },
};