Skip to content

Commit

Permalink
Merge branch '8.17' into backport/8.17/pr-196036
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko authored Dec 2, 2024
2 parents 126dee8 + 4266673 commit 76d807c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import { FormTestComponent } from '../../../common/test_utils';
import { Create } from './create';
import { customFieldsConfigurationMock } from '../../../containers/mock';

describe('Create ', () => {
// FLAKY: https://github.com/elastic/kibana/issues/200827
describe.skip('Create ', () => {
const onSubmit = jest.fn();

beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { useDispatch, useSelector } from 'react-redux';
import React, { useEffect } from 'react';
import { RuleTypeParamsExpressionProps } from '@kbn/triggers-actions-ui-plugin/public';
import { AlertTlsComponent } from './alert_tls';
import { getDynamicSettings } from '../../state/settings/api';
import { selectDynamicSettings } from '../../state/settings';
import { getDynamicSettingsAction, selectDynamicSettings } from '../../state/settings';
import { TLSParams } from '../../../../../common/runtime_types/alerts/tls';
import { DYNAMIC_SETTINGS_DEFAULTS } from '../../../../../common/constants';

Expand All @@ -24,7 +23,7 @@ export const TLSRuleComponent: React.FC<{

useEffect(() => {
if (typeof settings === 'undefined') {
dispatch(getDynamicSettings());
dispatch(getDynamicSettingsAction.get());
}
}, [dispatch, settings]);

Expand Down

0 comments on commit 76d807c

Please sign in to comment.