Skip to content

Commit

Permalink
Fix top search area alignment (mlflow#1590)
Browse files Browse the repository at this point in the history
* fix

* address comments
  • Loading branch information
Zangr committed Jul 16, 2019
1 parent 4563365 commit d1186ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions mlflow/server/js/src/components/ExperimentView.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@

.ExperimentView-search-controls {
margin-top: 8px;
min-width: 800px;
}

.ExperimentView-run-buttons{
Expand Down
8 changes: 4 additions & 4 deletions mlflow/server/js/src/components/ExperimentView.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export class ExperimentView extends Component {
<div className="ExperimentView-search-inputs">
<div className="ExperimentView-search">
<div className="ExperimentView-search-input">
<label className="filter-label">Search Expression:</label>
<label className="filter-label">Search Runs:</label>
<div className="filter-wrapper">
<input
className="ExperimentView-searchInput"
Expand Down Expand Up @@ -375,7 +375,7 @@ export class ExperimentView extends Component {
</div>
<div className="ExperimentView-keyFilters">
<div className="ExperimentView-paramKeyFilter">
<label className="filter-label">Params:</label>
<label className="filter-label">Filter Params:</label>
<div className="filter-wrapper">
<input type="text"
placeholder="alpha, lr"
Expand All @@ -385,8 +385,8 @@ export class ExperimentView extends Component {
</div>
</div>
<div className="ExperimentView-metricKeyFilter">
<label className="filter-label">Metrics:</label>
<div className="filter-wrapper">
<label className="filter-label metrics-filter-label">Filter Metrics:</label>
<div className="filter-wrapper metrics-filter-wrapper">
<input type="text"
placeholder="rmse, r2"
value={this.state.metricKeyFilterInput}
Expand Down

0 comments on commit d1186ff

Please sign in to comment.