Added commit types in renderer

This commit is contained in:
ashishj 2022-03-31 20:52:27 +02:00
parent 51e9a6b3aa
commit 57ac111d05
1 changed files with 7 additions and 1 deletions

View File

@ -12,7 +12,13 @@ let allCommitsDict = {};
let branchNum;
//let conf = configApi.getConfig();
const commitType = db.commitType;
//const commitType = db.commitType;
const commitType = {
NORMAL: 0,
REVERSE: 1,
HIGHLIGHT: 2,
MERGE: 3,
};
let branchPos = {};
let commitPos = {};