mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-14 19:22:14 +01:00
add formatting to importer descriptions, change reporting group limit for months
This commit is contained in:
@@ -119,7 +119,7 @@ function updateReporting() {
|
||||
function getOptimalGroupingOption(diff: number): 'day' | 'week' | 'month' {
|
||||
if (diff <= 31) {
|
||||
return 'day';
|
||||
} else if (diff <= 365) {
|
||||
} else if (diff <= 200) {
|
||||
return 'week';
|
||||
} else {
|
||||
return 'month';
|
||||
|
||||
@@ -196,7 +196,9 @@ const showResultModal = ref(false);
|
||||
<div class="font-semibold text-muted py-1">
|
||||
Instructions:
|
||||
</div>
|
||||
{{ currentImporterDescription }}
|
||||
<div
|
||||
class="max-w-2xl"
|
||||
v-html="currentImporterDescription"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user