13 lines
449 B
JavaScript
13 lines
449 B
JavaScript
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',
|
|
];
|
|
|
|
export const NAV_LINK_COUNT_DEFAULT_CLASSES = ['gl-font-sm', 'gl-font-weight-normal'];
|