Skip to content

Commit 833eec0

Browse files
committed
small fix
1 parent baf940e commit 833eec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/packages/insights/src/PerfSymbolTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const PerfSymbolTable = ({data})=>{
1616
{data.map((row, index) => (
1717
<tr key={index}>
1818
<td >{row.file}</td>
19-
<td >{row.symbol}</td>
19+
<td style={{maxWidth:"25vw",wordWrap:"break-word"}}>{row.symbol}</td>
2020
<td >{(row.percentage*100).toFixed(1)}</td>
2121

2222
</tr>

0 commit comments

Comments
 (0)