Skip to content

Commit

Permalink
fixed eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
katrin-freihofner committed Dec 22, 2020
1 parent e85511b commit 2fca30f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const AlertDropdown = () => {

return (
<>
<EuiPopover panelPaddingSize='none'
<EuiPopover panelPaddingSize="none"
button={
<EuiButtonEmpty iconSide={'right'} iconType={'arrowDown'} onClick={openPopover}>
<FormattedMessage id="xpack.infra.alerting.logs.alertsButton" defaultMessage="Alerts" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const LogEntryContextMenu: React.FC<LogEntryContextMenuProps> = ({
return (
<LogEntryContextMenuContent>
<AbsoluteWrapper>
<EuiPopover panelPaddingSize='none' closePopover={onClose} isOpen={isOpen} button={button} ownFocus={true}>
<EuiPopover panelPaddingSize="none" closePopover={onClose} isOpen={isOpen} button={button} ownFocus={true}>
<EuiContextMenuPanel items={wrappedItems} />
</EuiPopover>
</AbsoluteWrapper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const FieldLogColumnConfigurationPanel: React.FunctionComponent<{
);
return (
<EuiPanel data-test-subj={`logColumnPanel fieldLogColumnPanel fieldLogColumnPanel:${field}`}>
<EuiFlexGroup alignItems='center'>
<EuiFlexGroup alignItems="center">
<EuiFlexItem grow={false}>
<div data-test-subj="moveLogColumnHandle" {...dragHandleProps}>
<EuiIcon type="grab" />
Expand Down Expand Up @@ -212,7 +212,7 @@ const ExplainedLogColumnConfigurationPanel: React.FunctionComponent<{
<EuiPanel
data-test-subj={`logColumnPanel systemLogColumnPanel systemLogColumnPanel:${fieldName}`}
>
<EuiFlexGroup alignItems='center'>
<EuiFlexGroup alignItems="center">
<EuiFlexItem grow={false}>
<div data-test-subj="moveLogColumnHandle" {...dragHandleProps}>
<EuiIcon type="grab" />
Expand Down

0 comments on commit 2fca30f

Please sign in to comment.