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

constants.js « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c63d49fa407d0a7aa5c096695184c8184215779b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Fuzzy file finder
export const MAX_FILE_FINDER_RESULTS = 40;
export const FILE_FINDER_ROW_HEIGHT = 55;
export const FILE_FINDER_EMPTY_ROW_HEIGHT = 33;

// Commit message textarea
export const MAX_TITLE_LENGTH = 50;
export const MAX_BODY_LENGTH = 72;

export const ActivityBarViews = {
  edit: 'ide-tree',
  commit: 'commit-section',
};