Skip to content

Commit 5391118

Browse files
authored
fixes timeline data providers tests (#51862) (#51869)
1 parent 3db62cf commit 5391118

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

x-pack/legacy/plugins/siem/cypress/integration/lib/hosts/selectors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
export const ALL_HOSTS_WIDGET = '[data-test-subj="table-allHosts-loading-false"]';
99

1010
/** A single draggable host in the `All Hosts` widget on the `Hosts` page */
11-
export const ALL_HOSTS_WIDGET_HOST = '[data-react-beautiful-dnd-drag-handle]';
11+
export const ALL_HOSTS_WIDGET_HOST = '[data-test-subj="draggable-content-host.name"]';
1212

1313
/** All the draggable hosts in the `All Hosts` widget on the `Hosts` page */
1414
export const ALL_HOSTS_WIDGET_DRAGGABLE_HOSTS = `${ALL_HOSTS_WIDGET} ${ALL_HOSTS_WIDGET_HOST}`;

x-pack/legacy/plugins/siem/public/components/drag_and_drop/droppable_wrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const ReactDndDropTarget = styled.div<{ isDraggingOver: boolean; height: string
4040
background-color: ${rgba(props.theme.eui.euiColorSuccess, 0.3)};
4141
}
4242
> div.timeline-drop-area-empty {
43-
color: ${props.theme.eui.euiColorSuccess}
43+
color: ${props.theme.eui.euiColorSuccess};
4444
background-color: ${rgba(props.theme.eui.euiColorSuccess, 0.2)};
4545
4646
& .euiTextColor--subdued {

0 commit comments

Comments
 (0)