Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Jun 30, 2023
1 parent b217d70 commit 3155576
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { getPreloadedState } from '../../../state_management/lens_slice';

import type { DatasourceMap, VisualizationMap } from '../../../types';
import {
LensEditConfifurationFlyout,
LensEditConfigurationFlyout,
type EditConfigPanelProps,
} from './lens_configuration_flyout';
import type { LensAppServices } from '../../types';
Expand Down Expand Up @@ -116,7 +116,7 @@ export function getEditLensConfiguration(
hideCloseButton
>
<Provider store={lensStore}>
<LensEditConfifurationFlyout {...configPanelProps} />
<LensEditConfigurationFlyout {...configPanelProps} />
</Provider>
</EuiFlyout>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import type { TypedLensByValueInput } from '../../../embeddable/embeddable_compo
import { VisualizationToolbar } from '../../../editor_frame_service/editor_frame/workspace_panel';
import { ConfigPanelWrapper } from '../../../editor_frame_service/editor_frame/config_panel/config_panel';
import {
LensEditConfifurationFlyout,
LensEditConfigurationFlyout,
type EditConfigPanelProps,
} from './lens_configuration_flyout';

Expand All @@ -42,7 +42,7 @@ afterEach(() => {
container = undefined;
});

describe('LensEditConfifurationFlyout', () => {
describe('LensEditConfigurationFlyout', () => {
const mockStartDependencies =
createMockStartDependencies() as unknown as LensPluginStartDependencies;
const data = mockDataPlugin();
Expand All @@ -60,7 +60,7 @@ describe('LensEditConfifurationFlyout', () => {
query?: Query | AggregateQuery
) {
return mountWithProvider(
<LensEditConfifurationFlyout {...props} />,
<LensEditConfigurationFlyout {...props} />,
{
preloadedState: {
datasourceStates: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export interface EditConfigPanelProps {
adaptersTables?: Record<string, Datatable>;
}

export function LensEditConfifurationFlyout({
export function LensEditConfigurationFlyout({
attributes,
dataView,
coreStart,
Expand Down

0 comments on commit 3155576

Please sign in to comment.