Commit 566ad18 1 parent 1c80817 commit 566ad18 Copy full SHA for 566ad18
File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -105,8 +105,9 @@ const aucValue = (integration) => {
105
105
stackIntegration . forEach ( ( inte ) => {
106
106
if ( inte . absoluteArea ) {
107
107
const areaVal = inte . absoluteArea . toFixed ( 2 ) ;
108
+ const rt = inte . xL . toFixed ( 3 ) ;
108
109
const percent = ( areaVal * 100 / sumVal ) . toFixed ( 2 ) ;
109
- const valStr = areaVal + " (" + percent + "%)" ; // eslint-disable-line
110
+ const valStr = ` ${ rt } min ( ${ percent } %)` ;
110
111
values . push ( valStr ) ;
111
112
}
112
113
} ) ;
@@ -304,7 +305,7 @@ const InfoPanel = ({
304
305
( Format . isHplcUvVisLayout ( layoutSt ) ) ? (
305
306
< div className = { classNames ( classes . rowRoot , classes . rowOddSim ) } >
306
307
< span className = { classNames ( classes . tTxt , classes . tHead , 'txt-sv-panel-txt' ) } >
307
- Area under curve (AUC):
308
+ HPLC UV/VIS
308
309
</ span >
309
310
< br />
310
311
< span className = { classNames ( classes . tTxt , classes . tTxtSim , 'txt-sv-panel-txt' ) } >
You can’t perform that action at this time.
0 commit comments