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

actions.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: 841aee04029e359d6f19a2ebabf49681d27a827a (plain)
1
2
3
4
5
import * as types from './mutation_types';

export const setSearch = ({ commit }, value) => {
  commit(types.SET_SEARCH, value);
};