debian-mirror-gitlab/app/assets/javascripts/search/sidebar/constants/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
449 B
JavaScript
Raw Normal View History

2023-01-13 00:05:48 +05:30
export const SCOPE_ISSUES = 'issues';
export const SCOPE_MERGE_REQUESTS = 'merge_requests';
export const NUMBER_FORMATING_OPTIONS = { notation: 'compact', compactDisplay: 'short' };
export const NAV_LINK_DEFAULT_CLASSES = [
'gl-display-flex',
'gl-flex-direction-row',
'gl-flex-wrap-nowrap',
'gl-justify-content-space-between',
'gl-text-gray-900',
];
2023-03-04 22:38:38 +05:30
export const NAV_LINK_COUNT_DEFAULT_CLASSES = ['gl-font-sm', 'gl-font-weight-normal'];