Revert dropdown to simpler positioning approach
Some checks failed
Lint and Build / build (pull_request) Failing after 1m13s

Simplified dropdown positioning to fix layering issues:
- Reverted to absolute positioning with inline z-index styles
- Added explicit z-index to dropdown container in streams page
- Removed complex fixed positioning logic that was causing problems

This should resolve dropdown visibility issues while maintaining proper positioning.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Decobus 2025-07-20 01:55:22 -04:00
parent fd58d200f2
commit 882c71f2ba
2 changed files with 24 additions and 49 deletions

View file

@ -235,7 +235,7 @@ export default function AddStream() {
Team
</label>
<div className="form-row">
<div style={{ flex: 1 }}>
<div style={{ flex: 1, position: 'relative', zIndex: 10000 }}>
<Dropdown
options={teams}
activeId={formData.team_id}