File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " neodash" ,
3
- "version" : " 2.3.4 " ,
3
+ "version" : " 2.3.5 " ,
4
4
"description" : " NeoDash - Neo4j Dashboard Builder" ,
5
5
"neo4jDesktop" : {
6
6
"apiVersion" : " ^1.2.0"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ const NeoCardView = ({
49
49
const ref = React . useRef ( ) ;
50
50
51
51
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 ) )
53
53
) . reduce ( ( obj , key ) => {
54
54
return Object . assign ( obj , {
55
55
[ key ] : settings [ key ] ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ module.exports = (env) => {
56
56
} ,
57
57
entry : [ './src/index.tsx' ] ,
58
58
mode : production ? 'production' : 'development' ,
59
- devtool : production ? undefined : 'eval-source-map' ,
59
+ devtool : production ? undefined : 'eval-cheap-module- source-map' ,
60
60
module : {
61
61
rules : rules ,
62
62
} ,
You can’t perform that action at this time.
0 commit comments