Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(feat) Remove info toolip from line items table header #100

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
Loading