Skip to content

Commit

Permalink
[Uptime] Fixed pagination styling (#95940)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
shahzad31 and kibanamachine authored Apr 7, 2021
1 parent 011b234 commit d815403
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import styled from 'styled-components';
import { useUrlParams } from '../../../hooks';

const OverviewPageLinkButtonIcon = styled(EuiButtonIcon)`
padding-top: 12px;
margin-top: 12px;
`;

interface OverviewPageLinkProps {
Expand Down Expand Up @@ -52,7 +52,7 @@ export const OverviewPageLink: FunctionComponent<OverviewPageLinkProps> = ({
data-test-subj={dataTestSubj}
iconType={icon}
aria-label={!pagination ? disableLinkLabel : ariaLabel}
disabled={!pagination}
isDisabled={!pagination}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ export class QueryContext {
this.pagination,
this.filterClause,
this.size,
this.statusFilter
this.statusFilter,
this.query
);
}

Expand Down

0 comments on commit d815403

Please sign in to comment.