Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikmv committed Jun 19, 2024
1 parent 001ba04 commit 15abbb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import i18n from '@dhis2/d2-i18n';
import { MenuItem } from '@dhis2/ui';
import { EllipsisButton } from './EllipsisButton';
import { CategoryCodes, ChartData } from '../../../types/chartDataTypes';
import { MappedEntityValues } from '../../../utils/DataFetching/Sorting/useMappedTrackedEntity';
import { PrintDocument } from '../../../utils/ChartOptions';
import { PrintIcon } from '../../../UI/Icons/PrintIcon';
import { MenuItem } from '@dhis2/ui';

interface ChartSettingsButtonProps {
category: keyof typeof CategoryCodes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Button, Layer, Popper, FlyoutMenu, IconMore16 } from '@dhis2/ui';
type Props = {
primary?: boolean;
secondary?: boolean;
icon?: React.ReactElement;
dataTest?: string;
small?: boolean;
large?: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export const ChartSelectorDropdown = ({
<Tooltip
openDelay={500}
closeDelay={50}
content={i18n.t('Gender is pre-selected based on the profile')}>
content={i18n.t('Gender is pre-selected based on the profile')}
>

<InputField
value={title.toString()}
Expand Down Expand Up @@ -51,4 +52,3 @@ export const ChartSelectorDropdown = ({
</SingleSelectField>
)
);

0 comments on commit 15abbb2

Please sign in to comment.