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

state.js « store « add_context_commits_modal « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37239adccbbf589f4415d03d01f779eb8397ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default () => ({
  contextCommitsPath: '',
  tabIndex: 0,
  isLoadingCommits: false,
  commits: [],
  commitsLoadingError: false,
  selectedCommits: [],
  isLoadingContextCommits: false,
  contextCommits: [],
  contextCommitsLoadingError: false,
  searchText: '',
  toRemoveCommits: [],
});