summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/header_search/store/mutations.js
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;
  },
};