Skip to content

Commit

Permalink
Fix styling error of react-virtualized
Browse files Browse the repository at this point in the history
hien-cao committed Dec 18, 2023
1 parent b350e00 commit a479e5d
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@
"react-redux-toastr": "^7.6.13",
"react-router-dom": "^5.3.0",
"react-sortable-tree-theme-file-explorer": "git+https://github.com/SemanticComputing/react-sortable-tree-theme-file-explorer.git#88cee6950b0656452987c5bd7e76780c62b1e913",
"react-virtualized": "^9.22.3",
"react-virtualized": "^9.22.5",
"react-wordcloud": "^1.2.7",
"redux": "^4.2.1",
"redux-observable": "^2.0.0",
1 change: 0 additions & 1 deletion src/client/components/App.js
Original file line number Diff line number Diff line change
@@ -118,7 +118,6 @@ const App = () => (
<SemanticPortal />
</ThemeProvider>
</LocalizationProvider>

</>

)
3 changes: 2 additions & 1 deletion src/client/components/facet_results/VirtualizedTable.js
Original file line number Diff line number Diff line change
@@ -13,6 +13,8 @@ import {
SortIndicator
} from 'react-virtualized'

import 'react-virtualized/styles.css';

// https://github.com/bvaughn/react-virtualized/issues/650
// https://github.com/bvaughn/react-virtualized/blob/master/docs/usingAutoSizer.md

@@ -82,7 +84,6 @@ class VirtualizedTable extends React.PureComponent {
this._noRowsRenderer = this._noRowsRenderer.bind(this)
this._sort = this._sort.bind(this)
}

render () {
const { classes, list, perspectiveID } = this.props
// console.log(list)
1 change: 0 additions & 1 deletion src/client/index.js
Original file line number Diff line number Diff line change
@@ -70,7 +70,6 @@ render(
<App />
</Suspense>
</Router>

<ReduxToastr
timeOut={0}
newestOnTop={false}

0 comments on commit a479e5d

Please sign in to comment.