summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/search/sort/constants.js
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',
  },
};