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

state.js « store « metric_images « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b734e5c87a6a167dad51fb54964ae979891d5864 (plain)
1
2
3
4
5
6
7
8
9
10
export default ({ modelIid, projectId } = {}) => ({
  // Initial state
  modelIid,
  projectId,

  // View state
  metricImages: [],
  isLoadingMetricImages: false,
  isUploadingImage: false,
});