fix/add tests, update heatmap range, finish android release, add readme
Stop tracking gradle.properties
This commit is contained in:
@@ -69,9 +69,9 @@ const weeks = computed(() => {
|
||||
|
||||
const getHeatmapClass = (count) => {
|
||||
if (count === 0) return 'level-0';
|
||||
if (count <= 5) return 'level-1';
|
||||
if (count <= 10) return 'level-2';
|
||||
if (count <= 20) return 'level-3';
|
||||
if (count <= 20) return 'level-1';
|
||||
if (count <= 50) return 'level-2';
|
||||
if (count <= 100) return 'level-3';
|
||||
return 'level-4';
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user