From f9b1f8527a4055b39e80b527cc71b98fa5544c96 Mon Sep 17 00:00:00 2001 From: Sean Landsman Date: Tue, 14 Aug 2018 10:23:54 +0100 Subject: [PATCH] retiring deprecated themes --- src-large-data/index.js | 2 +- src-trader-dashboard/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-large-data/index.js b/src-large-data/index.js index 4e03d5c..bb4bcb4 100644 --- a/src-large-data/index.js +++ b/src-large-data/index.js @@ -5,7 +5,7 @@ import React from 'react'; import LargeGrid from './largeGrid.jsx'; import 'ag-grid/dist/styles/ag-grid.css'; -import 'ag-grid/dist/styles/theme-fresh.css'; +import 'ag-grid/dist/styles/ag-theme-fresh.css'; // waiting for dom to load before booting react. we could alternatively // put the index.js reference at the end fo the index.html, but i prefer this way. diff --git a/src-trader-dashboard/index.js b/src-trader-dashboard/index.js index 46ab471..5710aa7 100644 --- a/src-trader-dashboard/index.js +++ b/src-trader-dashboard/index.js @@ -6,7 +6,7 @@ import {render} from "react-dom"; import {Provider} from "react-redux"; import "ag-grid/dist/styles/ag-grid.css"; -import "ag-grid/dist/styles/theme-fresh.css"; +import "ag-grid/dist/styles/ag-theme-fresh.css"; import StoreService from './services/StoreService'; import TraderDashboard from "./components/TraderDashboard.jsx";