Skip to content

Commit

Permalink
(feat) Remove info toolip from line items table header (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen authored Dec 15, 2023
1 parent 5deed7a commit 00600f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { ErrorState, isDesktop, useConfig, useLayoutType, usePagination } from '@openmrs/esm-framework';
import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';
import { useBills } from '../billing.resource';
import {
DataTableSkeleton,
Layer,
Expand All @@ -19,9 +17,11 @@ import {
TableExpandRow,
TableExpandedRow,
} from '@carbon/react';
import styles from './bill-history.scss';
import { ErrorState, isDesktop, useConfig, useLayoutType, usePagination } from '@openmrs/esm-framework';
import { EmptyDataIllustration } from '@openmrs/esm-patient-common-lib';
import { useBills } from '../billing.resource';
import InvoiceTable from '../invoice/invoice-table.component';
import styles from './bill-history.scss';

interface BillHistoryProps {
patientUuid: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ const InvoiceTable: React.FC<InvoiceTableProps> = ({ billUuid }) => {
description={
<p className={styles.tableDescription}>
<span>{t('itemsToBeBilled', 'Items to be billed')}</span>
<Information className={styles.infoIcon} />
</p>
}
title={t('lineItems', 'Line items')}>
Expand Down
5 changes: 0 additions & 5 deletions packages/esm-billing-app/src/invoice/invoice-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,3 @@
height: layout.$spacing-07;
}
}

.infoIcon {
margin-top: layout.$spacing-01;
margin-left: layout.$spacing-02;
}

0 comments on commit 00600f1

Please sign in to comment.