Fix BulkHideToolbar not sticking when scrolling on Reporting page
Add position: sticky, top: 0, zIndex: 20 to BulkHideToolbar so the Atlas Action Plan button remains visible while scrolling through findings. Matches the existing sticky behavior of SelectionToolbar.
This commit is contained in:
@@ -5378,6 +5378,7 @@ function RowVisibilityManager({ hiddenRowIds, findings, onRestore, onRestoreAll
|
||||
function BulkHideToolbar({ count, onHide, onClear, onAtlasBulk, canWrite }) {
|
||||
return (
|
||||
<div style={{
|
||||
position: 'sticky', top: 0, zIndex: 20,
|
||||
display: 'flex', alignItems: 'center', gap: '0.75rem',
|
||||
padding: '0.5rem 1rem',
|
||||
background: 'linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95))',
|
||||
|
||||
Reference in New Issue
Block a user