fix(ui) - safari width fix

This commit is contained in:
Shekar Siri 2022-11-25 17:32:17 +01:00
parent 7b383f7bba
commit a0d7188910
2 changed files with 2 additions and 3 deletions

View file

@ -175,8 +175,7 @@ function FilterValue(props: Props) {
};
return (
//
<div className={cn("grid gap-3 w-full", { 'grid-cols-2': filter.hasSource, 'grid-cols-3' : !filter.hasSource })}>
<div className={cn("grid gap-3", { 'grid-cols-2': filter.hasSource, 'grid-cols-3' : !filter.hasSource })}>
{filter.type === FilterType.DURATION
? renderValueFiled(filter.value, 0)
: filter.value &&

View file

@ -16,7 +16,7 @@ function LatestSessionsMessage(props: Props) {
style={{ backgroundColor: 'rgb(255 251 235)' }}
onClick={() => props.updateCurrentPage(1)}
>
Show {numberWithCommas(count)} new Sessions
Show {numberWithCommas(count)} New Sessions
</div>
) : (
<></>