Skip to content

Commit

Permalink
replace Button with div in SingleThreadView
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarshall committed Jan 9, 2025
1 parent e9ee169 commit 6e366d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/DataThread.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ let SingleThreadView: FC<{
return [
regularTableBox,
<Box sx={{display: 'flex', flexDirection: 'row'}}>
<Button sx={{minWidth: '1px', padding: '0px', width: '17px', flex: 'none', display: 'flex'
<div style={{minWidth: '1px', padding: '0px', width: '17px', flex: 'none', display: 'flex'
//borderLeft: '1px dashed darkgray',
}}>
<Box sx={{padding:0, width: '1px', margin:'auto', height: '100%',
Expand All @@ -238,7 +238,7 @@ let SingleThreadView: FC<{
backgroundImage: 'linear-gradient(180deg, darkgray, darkgray 75%, transparent 75%, transparent 100%)',
backgroundSize: '1px 6px, 3px 100%'
}}></Box>
</Button>
</div>
<Box sx={{flex: 1, padding: '8px 0px', minHeight: '8px', ...chartElementProps}}>
{releventChartElements}
</Box>
Expand Down

0 comments on commit 6e366d1

Please sign in to comment.