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

constants.js « performance_bar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09745797424ec77297d811f6ebaf64ccdf139ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { s__ } from '~/locale';

export const sortOrders = {
  DURATION: 'duration',
  CHRONOLOGICAL: 'chronological',
};

export const sortOrderOptions = {
  [sortOrders.DURATION]: s__('PerformanceBar|Sort by duration'),
  [sortOrders.CHRONOLOGICAL]: s__('PerformanceBar|Sort chronologically'),
};