Skip to content

Commit e10d296

Browse files
committed
Version package
1 parent 4aaf4b2 commit e10d296

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neodash",
3-
"version": "2.3.4",
3+
"version": "2.3.5",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

src/card/view/CardView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const NeoCardView = ({
4949
const ref = React.useRef();
5050

5151
const settingsSelector = Object.keys(
52-
Object.fromEntries(Object.entries(REPORT_TYPES[type].settings).filter(([_, value]) => value.refresh))
52+
Object.fromEntries(Object.entries(REPORT_TYPES[type]?.settings || {}).filter(([_, value]) => value.refresh))
5353
).reduce((obj, key) => {
5454
return Object.assign(obj, {
5555
[key]: settings[key],

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = (env) => {
5656
},
5757
entry: ['./src/index.tsx'],
5858
mode: production ? 'production' : 'development',
59-
devtool: production ? undefined : 'eval-source-map',
59+
devtool: production ? undefined : 'eval-cheap-module-source-map',
6060
module: {
6161
rules: rules,
6262
},

0 commit comments

Comments
 (0)