diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-07-24 10:15:18 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:48:23 +0200 |
| commit | 2892f05baeb79f77586eb36d3506a57b1d20b8aa (patch) | |
| tree | 80405c59a947ea8f2316980e7e77ce0a20e0b421 /frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js | |
| parent | ba5bce34d632ea9155dc957e90068d9f40b439ee (diff) | |
Increase component limits and add overflow handling
Diffstat (limited to 'frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js')
| -rw-r--r-- | frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js b/frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js index d5ecbce3..4e9dbc7e 100644 --- a/frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js +++ b/frontend/src/components/app/sidebars/topology/machine/UnitAddComponent.js @@ -11,7 +11,7 @@ class UnitAddComponent extends React.Component { return ( <div className="form-inline"> <div className="form-group w-100"> - <select className="form-control w-75 mr-1" ref={(unitSelect) => (this.unitSelect = unitSelect)}> + <select className="form-control w-70 mr-1" ref={(unitSelect) => (this.unitSelect = unitSelect)}> {this.props.units.map((unit) => ( <option value={unit._id} key={unit._id}> {unit.name} |
