Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sharon2719 committed May 27, 2024
1 parent 1323b9a commit 964388f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import { getPatientName, getPatientStatus, patientStatusColor } from '../../Pati
import { LIST_PATIENTS_URL } from '../../../constants';
import { Tag, Typography } from 'antd';
import { Link } from 'react-router-dom';
import { Column, viewDetailsQuery, ResourceDetailsProps, dateToLocaleString } from '@opensrp/react-utils';
import {
Column,
viewDetailsQuery,
ResourceDetailsProps,
dateToLocaleString,
} from '@opensrp/react-utils';
import type { TFunction } from '@opensrp/i18n';
import { get } from 'lodash';

Expand Down
22 changes: 11 additions & 11 deletions packages/fhir-client/src/components/PatientsList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ export const PatientsList = (props: PatientListProps) => {
<Helmet>
<title>{t('Patients')}</title>
</Helmet>
<div className='main-content__table'>
<div className="main-content__header">
<SearchForm {...searchFormProps} />
</div>
<Row className="list-view">
<Col className={'main-content'}>
<TableLayout {...tableProps} />
</Col>
<PatientDetailsOverview fhirBaseURL={fhirBaseURL} />
</Row>
</div>
<div className="main-content__table">
<div className="main-content__header">
<SearchForm {...searchFormProps} />
</div>
<Row className="list-view">
<Col className={'main-content'}>
<TableLayout {...tableProps} />
</Col>
<PatientDetailsOverview fhirBaseURL={fhirBaseURL} />
</Row>
</div>
</BodyLayout>
);
};
1 change: 1 addition & 0 deletions packages/keycloak-user-management/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
.main-content{
padding: 0;
}

.view-details-content{
padding-top: 0px;
}
Expand Down

0 comments on commit 964388f

Please sign in to comment.