fix mobile layout for session replay filter button

This commit is contained in:
Francis Cao
2026-06-17 11:56:03 -07:00
parent c61c01e3bb
commit 324e1d91a7
+5 -1
View File
@@ -111,7 +111,11 @@ export function DataGrid({
placeholder={t(labels.search)}
/>
)}
<Row alignItems="center" gap style={{ marginLeft: 'auto' }}>
<Row
alignItems="center"
gap
style={isMobile ? { width: '100%', justifyContent: 'flex-start' } : { marginLeft: 'auto' }}
>
{renderActions?.()}
{!isMobile && viewToggleButton}
</Row>