Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SIEM] Fixes timeline data providers Cypress tests #51862

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
export const ALL_HOSTS_WIDGET = '[data-test-subj="table-allHosts-loading-false"]';

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

/** All the draggable hosts in the `All Hosts` widget on the `Hosts` page */
export const ALL_HOSTS_WIDGET_DRAGGABLE_HOSTS = `${ALL_HOSTS_WIDGET} ${ALL_HOSTS_WIDGET_HOST}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ReactDndDropTarget = styled.div<{ isDraggingOver: boolean; height: string
background-color: ${rgba(props.theme.eui.euiColorSuccess, 0.3)};
}
> div.timeline-drop-area-empty {
color: ${props.theme.eui.euiColorSuccess}
color: ${props.theme.eui.euiColorSuccess};
background-color: ${rgba(props.theme.eui.euiColorSuccess, 0.2)};
& .euiTextColor--subdued {
Expand Down