From e012bb3ba14140ebc5bb8e560153898426755925 Mon Sep 17 00:00:00 2001 From: Dennis Kigen Date: Fri, 15 Dec 2023 11:05:36 +0300 Subject: [PATCH] (feat) Remove info toolip from line items table header --- .../src/bill-history/bill-history.component.tsx | 6 +++--- .../esm-billing-app/src/invoice/invoice-table.component.tsx | 1 - packages/esm-billing-app/src/invoice/invoice-table.scss | 5 ----- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/packages/esm-billing-app/src/bill-history/bill-history.component.tsx b/packages/esm-billing-app/src/bill-history/bill-history.component.tsx index e527cccb2..0026bd53f 100644 --- a/packages/esm-billing-app/src/bill-history/bill-history.component.tsx +++ b/packages/esm-billing-app/src/bill-history/bill-history.component.tsx @@ -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, @@ -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; diff --git a/packages/esm-billing-app/src/invoice/invoice-table.component.tsx b/packages/esm-billing-app/src/invoice/invoice-table.component.tsx index 1cf98b34e..e525a21d8 100644 --- a/packages/esm-billing-app/src/invoice/invoice-table.component.tsx +++ b/packages/esm-billing-app/src/invoice/invoice-table.component.tsx @@ -99,7 +99,6 @@ const InvoiceTable: React.FC = ({ billUuid }) => { description={

{t('itemsToBeBilled', 'Items to be billed')} -

} title={t('lineItems', 'Line items')}> diff --git a/packages/esm-billing-app/src/invoice/invoice-table.scss b/packages/esm-billing-app/src/invoice/invoice-table.scss index f3740e61d..1f43be143 100644 --- a/packages/esm-billing-app/src/invoice/invoice-table.scss +++ b/packages/esm-billing-app/src/invoice/invoice-table.scss @@ -89,8 +89,3 @@ height: layout.$spacing-07; } } - -.infoIcon { - margin-top: layout.$spacing-01; - margin-left: layout.$spacing-02; -}