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

mock_data.js « shared « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 411363c2c95e4acdfdf96e7aada9cd82de9fc93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export const options = [{ key: 'foo', label: 'Foo' }, { key: 'bar', label: 'Bar', default: true }];
export const stringifiedOptions = JSON.stringify(options);
export const stringifiedFormOptions = {
  cadenceOptions: stringifiedOptions,
  keepNOptions: stringifiedOptions,
  olderThanOptions: stringifiedOptions,
};
export const formOptions = {
  cadence: options,
  keepN: options,
  olderThan: options,
};