Skip to content

Commit fbe6e8b

Browse files
authored
feat(perf): Adjust HTTP sample table column widths (#68901)
Both the span ID and status code have known widths, since their lengths are fixed.
1 parent c6d1348 commit fbe6e8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/views/performance/http/spanSamplesTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ const COLUMN_ORDER: Column[] = [
3939
{
4040
key: SpanIndexedField.ID,
4141
name: t('Span ID'),
42-
width: COL_WIDTH_UNDEFINED,
42+
width: 150,
4343
},
4444
{
4545
key: SpanIndexedField.RESPONSE_CODE,
4646
name: t('Status'),
47-
width: COL_WIDTH_UNDEFINED,
47+
width: 50,
4848
},
4949
{
5050
key: SpanIndexedField.SPAN_DESCRIPTION,

0 commit comments

Comments
 (0)