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

constants.js « sort « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 575fba5873b8d3303262114bc08370e0093bc36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { __ } from '~/locale';

export const SORT_DIRECTION_UI = {
  disabled: {
    direction: null,
    tooltip: '',
    icon: 'sort-highest',
  },
  desc: {
    direction: 'desc',
    tooltip: __('Sort direction: Descending'),
    icon: 'sort-highest',
  },
  asc: {
    direction: 'asc',
    tooltip: __('Sort direction: Ascending'),
    icon: 'sort-lowest',
  },
};