correctly dispaly short hash in changelog page.

This commit is contained in:
arabcoders
2025-05-17 22:41:55 +03:00
parent 25ae310e2d
commit 31225e4148

View File

@@ -119,7 +119,7 @@ const formatTag = tag => {
}
const branch = parts[0];
const date = parts[1];
const shortSha = parts[2].substring(0, 7);
const shortSha = parts[2].substring(0, 8);
return `${ucFirst(branch)}: ${moment(date, 'YYYYMMDD').format('YYYY-MM-DD')} - ${shortSha}`;
}