fix contrast on select and dropdown foreground colors, add missing placeholder in billable input

This commit is contained in:
Gregor Vostrak
2025-05-14 14:09:19 +02:00
parent 098ead8da6
commit 62b5730fa8
6 changed files with 15 additions and 7 deletions

View File

@@ -43,7 +43,9 @@ const xAxisLabels = computed(() => {
if (props.groupedType === 'week') {
return props?.groupedData?.map((el) => formatWeek(el.key));
}
return props?.groupedData?.map((el) => formatDate(el.key ?? '', organization?.value?.date_format));
return props?.groupedData?.map((el) =>
formatDate(el.key ?? '', organization?.value?.date_format)
);
});
const accentColor = useCssVar('--theme-color-chart', null, { observe: true });
const labelColor = useCssVar('--color-text-secondary', null, { observe: true });