33 lines
490 B
JavaScript
Executable File
33 lines
490 B
JavaScript
Executable File
function setTagFilter(state, tagFilter) {
|
|
state.tagFilter = tagFilter;
|
|
}
|
|
|
|
function setSummaryFormat(state, summaryFormat) {
|
|
state.summaryFormat = summaryFormat;
|
|
}
|
|
|
|
function setRange(state, range) {
|
|
state.range = range;
|
|
}
|
|
|
|
function setBatch(state, batch) {
|
|
state.batch = batch;
|
|
}
|
|
|
|
function setSfw(state, sfw) {
|
|
state.sfw = sfw;
|
|
}
|
|
|
|
function setTheme(state, theme) {
|
|
state.theme = theme;
|
|
}
|
|
|
|
export default {
|
|
setTagFilter,
|
|
setSummaryFormat,
|
|
setRange,
|
|
setBatch,
|
|
setSfw,
|
|
setTheme,
|
|
};
|