Skip to content

Commit 958146d

Browse files
committed
fix(explore): Render empty state text as a block element
Render `EmptyStateText` as a `div` so loading states can safely include block-level children like `LoadingIndicator` without invalid HTML. Refs LOGS-644 Co-Authored-By: GPT-5.4 <noreply@openai.com> Made-with: Cursor
1 parent b366fc5 commit 958146d

File tree

1 file changed

+1
-1
lines changed
  • static/app/views/explore/tables/tracesTable

1 file changed

+1
-1
lines changed

static/app/views/explore/tables/tracesTable/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function EmptyStateText({
134134
}) {
135135
return (
136136
<Container>
137-
<Text size={size} align={textAlign} variant="muted">
137+
<Text as="div" size={size} align={textAlign} variant="muted">
138138
{children}
139139
</Text>
140140
</Container>

0 commit comments

Comments
 (0)