fix(ui): align session date range text properly
Add text-start class to the date range container to ensure proper left alignment of text in the SessionDateRange component.
This commit is contained in:
parent
fdd26c567c
commit
c6cbc4eba8
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ function SessionDateRange() {
|
||||||
searchStore.applyFilter(dateValues);
|
searchStore.applyFilter(dateValues);
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center">
|
<div className="flex items-center text-start">
|
||||||
<span className="mr-1">
|
<span className="mr-1">
|
||||||
{t('No sessions')}
|
{t('No sessions')}
|
||||||
{isCustom ? t('between') : t('in the')}
|
{isCustom ? t('between') : t('in the')}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue