IO-888 Sorted Speedprint

This commit is contained in:
Patrick Fic
2021-04-13 08:22:41 -07:00
parent b09b2be34a
commit 4c0cde23b2
11 changed files with 51 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
import { Checkbox, Table } from "antd";
import { Checkbox, PageHeader, Table } from "antd";
import React, { useState } from "react";
import { useTranslation } from "react-i18next";
import CurrencyFormatter from "../../utils/CurrencyFormatter";
@@ -86,7 +86,7 @@ export default function JobReconciliationBillsTable({
};
return (
<div>
<PageHeader title={t("bills.labels.bills")}>
<Table
pagination={false}
scroll={{ y: "40vh", x: true }}
@@ -99,6 +99,6 @@ export default function JobReconciliationBillsTable({
selectedRowKeys: selectedLines,
}}
/>
</div>
</PageHeader>
);
}