Skip to content

Commit

Permalink
Merge pull request #351 from kinghuang/1429-op-list-overflow
Browse files Browse the repository at this point in the history
Improve display of long operation names in Operations list
  • Loading branch information
tiffon committed Mar 21, 2019
2 parents 4f78dcf + 14529aa commit 35f1cbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export class SearchFormImpl extends React.PureComponent {
props={{
clearable: false,
disabled: disabled || noSelectedService,
options: ['all'].concat(opsForSvc).map(v => ({ label: v, value: v })),
options: ['all'].concat(opsForSvc).map(v => ({ label: v, value: v, title: v })),
required: true,
}}
/>
Expand Down
1 change: 1 addition & 0 deletions packages/jaeger-ui/src/components/common/VirtSelect.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ limitations under the License.
display: flex;
align-items: center;
padding: 0 0.5rem;
white-space: nowrap;
}

.VirtSelect--option.is-focused {
Expand Down

0 comments on commit 35f1cbd

Please sign in to comment.