build(web): bump antd

This commit is contained in:
Collin M. Barrett 2020-07-04 12:39:15 -05:00
parent fc6b46e6d6
commit b5c2aec2ad
3 changed files with 3 additions and 3 deletions

BIN
web/package-lock.json generated

Binary file not shown.

View file

@ -11,7 +11,7 @@
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"antd": "^4.2.2",
"antd": "^4.4.0",
"babel-plugin-import": "^1.13.0",
"customize-cra": "^1.0.0",
"react": "^16.13.1",

View file

@ -19,7 +19,6 @@ import { List } from "../../interfaces/List";
import { ListInfoButton } from "../ListInfoButton";
import { Maintainer } from "../../interfaces/Maintainer";
import { MaintainerCloud } from "../maintainerCloud";
import { PaginationConfig } from "antd/lib/pagination";
import { RouteComponentProps } from "react-router";
import { Software } from "../../interfaces/Software";
import { Syntax } from "../../interfaces/Syntax";
@ -29,6 +28,7 @@ import { Tag as TagInterface } from "../../interfaces/Tag";
import { arraySorter } from "./arraySorter";
import { nameof } from "../../utils";
import styles from "./ListsTable.module.css";
import { TablePaginationConfig } from "antd/lib/table";
interface Props {
lists: List[];
@ -78,7 +78,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => {
: 1892,
}}
onChange={(
_pagination: PaginationConfig,
_pagination: TablePaginationConfig,
_filters: Record<string, Key[] | null>,
_sorter: SorterResult<List> | SorterResult<List>[],
extra: TableCurrentDataSource<List>