From 3d3952c549aa80263e9554a8665ec9420565f020 Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Fri, 26 Jul 2019 16:24:48 -0700 Subject: [PATCH] remove unnecessary scrollbar from Inventories Lookup --- awx/ui_next/src/components/Lookup/Lookup.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/awx/ui_next/src/components/Lookup/Lookup.jsx b/awx/ui_next/src/components/Lookup/Lookup.jsx index f4ab3e1f61..9eeecfe6af 100644 --- a/awx/ui_next/src/components/Lookup/Lookup.jsx +++ b/awx/ui_next/src/components/Lookup/Lookup.jsx @@ -14,7 +14,7 @@ import { Button, ButtonVariant, InputGroup as PFInputGroup, - Modal, + Modal as PFModal, } from '@patternfly/react-core'; import { withI18n } from '@lingui/react'; import { t } from '@lingui/macro'; @@ -36,6 +36,10 @@ const InputGroup = styled(PFInputGroup)` `} `; +const Modal = styled(PFModal)` + --pf-c-modal-box--body--MinHeight: 460px; +`; + class Lookup extends React.Component { constructor(props) { super(props);