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

mutations.js « stores « mr_notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8175aa9488f1c8a3ef8ab0a7c9d63d00ebb15a37 (plain)
1
2
3
4
5
6
7
import types from './mutation_types';

export default {
  [types.SET_ACTIVE_TAB](state, tab) {
    Object.assign(state, { activeTab: tab });
  },
};