fix(ui) - safari width fix
This commit is contained in:
parent
7b383f7bba
commit
a0d7188910
2 changed files with 2 additions and 3 deletions
|
|
@ -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 &&
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
) : (
|
||||
<></>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue