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

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

export default {
  [types.SET_SEARCH](state, value) {
    state.search = value;
  },
};