fix: take available width for dropdowns in grid and limit minWidth

This commit is contained in:
Gursheen Anand 2026-02-17 16:38:40 +05:30
parent 9d4cec10aa
commit e83a80bd6c

View file

@ -1084,7 +1084,8 @@ export default class GridRow {
position: "absolute",
top: `${top_difference + 10}px`,
left: `${left_difference}px`,
width: "250px",
minWidth: "250px",
width: `${element_position.width}px`,
});
}
});