Revert dropdown to simpler positioning approach
Some checks failed
Lint and Build / build (pull_request) Failing after 1m13s
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:
parent
fd58d200f2
commit
882c71f2ba
2 changed files with 24 additions and 49 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue