Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 committed Aug 4, 2020
1 parent 75a8246 commit 9d124dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
*/

export { letBrowserHandleEvent } from './link_events';
export { ReactRouterEuiLink as EuiLink } from './link_for_eui';
export { ReactRouterEuiButton as EuiButton } from './link_for_eui';
export {
ReactRouterEuiLink,
ReactRouterEuiButton,
ReactRouterEuiButtonEmpty,
} from './link_for_eui';
2 changes: 1 addition & 1 deletion x-pack/plugins/uptime/public/pages/certificates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { certificatesSelector, getCertificatesAction } from '../state/certificat
import { CertificateList, CertificateSearch, CertSort } from '../components/certificates';
import { ToggleAlertFlyoutButton } from '../components/overview/alerts/alerts_containers';
import { CLIENT_ALERT_TYPES } from '../../common/constants/alerts';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers/eui_link';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers';

const DEFAULT_PAGE_SIZE = 10;
const LOCAL_STORAGE_KEY = 'xpack.uptime.certList.pageSize';
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/uptime/public/pages/page_header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { UptimeDatePicker } from '../components/common/uptime_date_picker';
import { SETTINGS_ROUTE } from '../../common/constants';
import { ToggleAlertFlyoutButton } from '../components/overview/alerts/alerts_containers';
import { useKibana } from '../../../../../src/plugins/kibana_react/public';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers/eui_link';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers';

interface PageHeaderProps {
headingText: string | JSX.Element;
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/uptime/public/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
VALUE_MUST_BE_GREATER_THAN_ZERO,
VALUE_MUST_BE_AN_INTEGER,
} from '../../common/translations';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers/eui_link';
import { ReactRouterEuiButtonEmpty } from '../components/common/react_router_helpers';

interface SettingsPageFieldErrors {
heartbeatIndices: string | '';
Expand Down

0 comments on commit 9d124dc

Please sign in to comment.