From 70a1ccd01953baf12d880e03e80b4a9cd3d055f5 Mon Sep 17 00:00:00 2001 From: pringshia Date: Mon, 1 Aug 2022 12:57:36 -0400 Subject: [PATCH 1/2] Update blueprintjs/core version --- packages/cra-template-mephisto-review/template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cra-template-mephisto-review/template.json b/packages/cra-template-mephisto-review/template.json index 9e2f1a7d0..aa0f4a847 100644 --- a/packages/cra-template-mephisto-review/template.json +++ b/packages/cra-template-mephisto-review/template.json @@ -1,7 +1,7 @@ { "package": { "dependencies": { - "@blueprintjs/core": "^3.38.1", + "@blueprintjs/core": "^4.7.0", "mephisto-review-hook": "^2.0.1", "react-router-dom": "^5.2.0" }, From 7227213dab16fb722a33f376a9ab4e8355d4bb9f Mon Sep 17 00:00:00 2001 From: pringshia Date: Mon, 1 Aug 2022 13:58:18 -0400 Subject: [PATCH 2/2] Update Pagination import capitalization to fix bug --- .../template/src/components/CollectionView.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cra-template-mephisto-review/template/src/components/CollectionView.jsx b/packages/cra-template-mephisto-review/template/src/components/CollectionView.jsx index cde0e69e4..0ca0bd189 100644 --- a/packages/cra-template-mephisto-review/template/src/components/CollectionView.jsx +++ b/packages/cra-template-mephisto-review/template/src/components/CollectionView.jsx @@ -12,7 +12,7 @@ import { } from "@blueprintjs/core"; import { Tooltip } from "@blueprintjs/core"; import { GridCollection, JSONItem } from "../renderers"; -import { Pagination } from "./pagination"; +import { Pagination } from "./Pagination"; import { getHostname } from "../utils"; import ErrorPane from "./ErrorPane";