Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into filters-url-state
Browse files Browse the repository at this point in the history
  • Loading branch information
rshen91 committed Oct 11, 2024
2 parents 9ef1ccc + 930f861 commit cbcc72c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export const EntityAnalyticsManagementPage = () => {
return (
<>
<RiskEnginePrivilegesCallOut privileges={privileges} />
<EuiFlexGroup gutterSize="s" alignItems="baseline">
<EuiFlexItem grow={false}>
<EuiPageHeader
data-test-subj="entityAnalyticsManagementPageTitle"
pageTitle={ENTITY_ANALYTICS_RISK_SCORE}
/>
</EuiFlexItem>
<EuiFlexItem grow={false} />
<EuiBetaBadge label={BETA} size="s" />
</EuiFlexGroup>
<EuiPageHeader
pageTitle={
<EuiFlexGroup>
<EuiFlexItem data-test-subj="entityAnalyticsManagementPageTitle" grow={false}>
{ENTITY_ANALYTICS_RISK_SCORE}
</EuiFlexItem>
<EuiBetaBadge label={BETA} size="s" />
</EuiFlexGroup>
}
/>
<EuiSpacer size="l" />
<EuiFlexGroup gutterSize="xl">
<EuiFlexItem grow={2}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
let roleAuthc: RoleCredentials;

describe('With custom role', function () {
// Failing: See https://github.com/elastic/kibana/issues/195976
describe.skip('With custom role', function () {
// skipping on MKI while we are working on a solution
this.tags(['skipMKI']);
before(async () => {
Expand Down

0 comments on commit cbcc72c

Please sign in to comment.