Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@ const DatePicker = ({ isDisabled = false, ...props }: DatePickerProps) => {
<Flex flex={1} minH={'420px'}>
<Flex w={'242px'} flexDir={'column'}>
<Flex
px={'16px'}
pt={'12px'}
sx={{
'.rdp': {
margin: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export const LogTable = ({
cell: ({ row }) => {
return (
<Box
flexShrink={0}
overflow={'hidden'}
color={'#18181B'}
fontSize={'14px'}
Expand All @@ -75,6 +74,8 @@ export const LogTable = ({
pl={'0px'}
alignItems={'flex-start'}
alignSelf={'stretch'}
wordBreak={'break-word'}
whiteSpace={'normal'}
>
{formatTime(row.original.timestamp, 'YYYY/MM/DD HH:mm:ss')}
</Box>
Expand Down
Loading