Skip to content

Commit

Permalink
fix flixkering
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 committed Jan 27, 2022
1 parent 20e4b12 commit 8d8d823
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugins/uptime/e2e/page_objects/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import { Page } from '@elastic/synthetics';

export function loginPageProvider({
page,
isRemote,
isRemote = false,
username = 'elastic',
password = 'changeme',
}: {
page: Page;
isRemote: boolean;
isRemote?: boolean;
username?: string;
password?: string;
}) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const AddConnectorFlyout = ({ focusInput, isDisabled }: Props) => {

return (
<>
{addFlyoutVisible ? ConnectorAddFlyout : null}
<EuiButtonEmpty
data-test-subj="createConnectorButton"
onClick={() => setAddFlyoutVisibility(true)}
Expand All @@ -83,7 +84,6 @@ export const AddConnectorFlyout = ({ focusInput, isDisabled }: Props) => {
defaultMessage="Add connector"
/>
</EuiButtonEmpty>
{addFlyoutVisible ? ConnectorAddFlyout : null}
</>
);
};

0 comments on commit 8d8d823

Please sign in to comment.