Skip to content

Commit 3b01bd8

Browse files
authored
fix(logs): Pass boolean attributes object to the logs table prop (#110544)
Fixing a small bug where the boolean attributes object wasn't being passed to the logs table.
1 parent 5f194bc commit 3b01bd8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/app/views/explore/logs/logsTab.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,9 @@ export function LogsTabContent({datePageFilterProps}: LogsTabProps) {
515515
<LogsItemContainer>
516516
{tableTab === 'logs' ? (
517517
<LogsInfiniteTable
518-
stringAttributes={stringAttributes}
518+
booleanAttributes={booleanAttributes}
519519
numberAttributes={numberAttributes}
520+
stringAttributes={stringAttributes}
520521
/>
521522
) : (
522523
<LogsAggregateTable aggregatesTableResult={aggregatesTableResult} />

0 commit comments

Comments
 (0)