File tree 4 files changed +74
-141
lines changed
js/apps/system/_admin/aardvark/APP 4 files changed +74
-141
lines changed Original file line number Diff line number Diff line change 1
1
devel
2
2
-----
3
3
4
+ * Web UI: Disables the hover tooltip within the statistics view of the
5
+ memory consumption chart.
6
+
7
+ * Raised the versions of the node modules `node-sass` and `sass-loader`
8
+ to be able to build the Web UI with Node v16+.
9
+
4
10
* Improve usability of hidden options: `--help` mentions that these exist
5
11
and how to display them.
6
12
Original file line number Diff line number Diff line change 496
496
'values' : [
497
497
{
498
498
label : 'used' ,
499
- value : newData . residentSizePercent * 100
499
+ value : parseFloat ( ( newData . residentSizePercent * 100 ) . toFixed ( 2 ) )
500
500
}
501
501
]
502
502
} ,
506
506
'values' : [
507
507
{
508
508
label : 'used' ,
509
- value : 100 - newData . residentSizePercent * 100
509
+ value : parseFloat ( ( 100 - newData . residentSizePercent * 100 ) . toFixed ( 2 ) )
510
510
}
511
511
]
512
512
}
898
898
return d + '%' ;
899
899
} )
900
900
. showMaxMin ( false ) ;
901
- self . residentChart . xAxis . showMaxMin ( false ) ;
901
+ self . residentChart . xAxis
902
+ . tickFormat ( function ( ) {
903
+ return "" ;
904
+ } )
905
+ . showMaxMin ( false ) ;
902
906
903
907
d3 . select ( '#residentSizeChart svg' )
904
908
. datum ( self . history [ self . server ] . residentSizeChart )
Original file line number Diff line number Diff line change 57
57
"lodash" : " ^4.17.11" ,
58
58
"marked" : " ^0.7.0" ,
59
59
"mini-css-extract-plugin" : " 0.4.3" ,
60
- "node-sass" : " ^4.14.1 " ,
60
+ "node-sass" : " ^6.0.0 " ,
61
61
"noty" : " ^3.2.0-beta" ,
62
62
"nvd3" : " ^1.8.6" ,
63
63
"optimize-css-assets-webpack-plugin" : " 5.0.1" ,
73
73
"react-dev-utils" : " ^6.1.1" ,
74
74
"react-dom" : " ^16.13.1" ,
75
75
"resolve" : " 1.8.1" ,
76
- "sass-loader" : " ^7.3 .1" ,
76
+ "sass-loader" : " ^10.1 .1" ,
77
77
"sigma" : " 1.2.0" ,
78
78
"style-loader" : " ^0.23.1" ,
79
79
"terser-webpack-plugin" : " ^3.0.6" ,
You can’t perform that action at this time.
0 commit comments