-
+
{displayText}
diff --git a/frontend/components/forms/fields/SelectTargetsDropdown/TargetDetails/TargetDetails.tests.jsx b/frontend/components/forms/fields/SelectTargetsDropdown/TargetDetails/TargetDetails.tests.jsx
index 6bfeb97864..f015b0bdbd 100644
--- a/frontend/components/forms/fields/SelectTargetsDropdown/TargetDetails/TargetDetails.tests.jsx
+++ b/frontend/components/forms/fields/SelectTargetsDropdown/TargetDetails/TargetDetails.tests.jsx
@@ -48,9 +48,9 @@ describe('TargetDetails - component', () => {
it('renders a success check icon when the target is online', () => {
const target = { ...Test.Stubs.hostStub, status: 'online' };
const Component = mount(
);
- const Icon = Component.find('Icon');
- const onlineIcon = Icon.find('.host-target__icon--online');
- const offlineIcon = Icon.find('.host-target__icon--offline');
+ const KolideIcon = Component.find('KolideIcon');
+ const onlineIcon = KolideIcon.find('.host-target__icon--online');
+ const offlineIcon = KolideIcon.find('.host-target__icon--offline');
expect(onlineIcon.length).toBeGreaterThan(0, 'Expected the online icon to render');
expect(offlineIcon.length).toEqual(0, 'Expected the offline icon to not render');
@@ -59,9 +59,9 @@ describe('TargetDetails - component', () => {
it('renders a offline icon when the target is offline', () => {
const target = { ...Test.Stubs.hostStub, status: 'offline' };
const Component = mount(
);
- const Icon = Component.find('Icon');
- const onlineIcon = Icon.find('.host-target__icon--online');
- const offlineIcon = Icon.find('.host-target__icon--offline');
+ const KolideIcon = Component.find('KolideIcon');
+ const onlineIcon = KolideIcon.find('.host-target__icon--online');
+ const offlineIcon = KolideIcon.find('.host-target__icon--offline');
expect(onlineIcon.length).toEqual(0, 'Expected the online icon to not render');
expect(offlineIcon.length).toBeGreaterThan(0, 'Expected the offline icon to render');
diff --git a/frontend/components/forms/fields/SelectTargetsDropdown/_styles.scss b/frontend/components/forms/fields/SelectTargetsDropdown/_styles.scss
index 98c174cafa..f7673739ab 100644
--- a/frontend/components/forms/fields/SelectTargetsDropdown/_styles.scss
+++ b/frontend/components/forms/fields/SelectTargetsDropdown/_styles.scss
@@ -108,7 +108,7 @@
.Select-menu {
height: 498px;
max-height: 498px;
- overflow: hidden;
+ overflow: scroll;
position: relative;
&::after {