Skip to content

Commit

Permalink
CR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jennypavlova committed Jul 6, 2023
1 parent 5e93f2e commit d21dd63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import React, { useState } from 'react';
import { EuiButton } from '@elastic/eui';
import type { Meta, Story } from '@storybook/react/types-6-0';
import { i18n } from '@kbn/i18n';
import type { DataViewField } from '@kbn/data-views-plugin/common';
import type { DataViewField } from '@kbn/data-views-plugin/public';
import type { DataView } from '@kbn/data-views-plugin/public';
import { AssetDetails } from './asset_details';
import { decorateWithGlobalStorybookThemeProviders } from '../../test_utils/use_global_storybook_theme';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@ export const ExpandableContent = (props: ExpandableContentProps) => {
const shouldShowMore = hasOthers && !isExpanded;

return (
<EuiFlexGroup
gutterSize={'xs'}
responsive={false}
alignItems={'baseline'}
wrap={true}
direction="column"
>
<EuiFlexGroup gutterSize="xs" responsive={false} alignItems="baseline" wrap direction="column">
<div>
{first}
{shouldShowMore && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { useMetadata } from '../../hooks/use_metadata';
import { useSourceContext } from '../../../../containers/metrics_source';
import { MetadataSummary } from './metadata_summary';
import { KPIGrid } from './kpi_grid';
import type { StringDateRange, TabIds } from '../../types';
import type { StringDateRange } from '../../types';

export interface MetadataSearchUrlState {
metadataSearchUrlState: string;
Expand All @@ -32,7 +32,6 @@ export interface OverviewProps extends KPIProps {
currentTimeRange: MetricsTimeInput;
nodeName: string;
nodeType: InventoryItemType;
onTabsStateChange?: (tabId: TabIds) => void;
}

const DEFAULT_DATE_RANGE = {
Expand Down

0 comments on commit d21dd63

Please sign in to comment.