@@ -24,7 +24,7 @@ import {LC, updateLayoutDisplay, getValidValueFrom, getFullRawTable} from './LcM
24
24
import { doPFCalculate , getPhase } from './LcPhaseTable.js' ;
25
25
import { LcPeriodogram , cancelPeriodogram , popupId } from './LcPeriodogram.jsx' ;
26
26
import { ReadOnlyText , getTypeData } from './LcUtil.jsx' ;
27
- import { LO_VIEW , getLayouInfo } from '../../core/LayoutCntlr.js' ;
27
+ import { LO_VIEW , getLayouInfo , dispatchUpdateLayoutInfo } from '../../core/LayoutCntlr.js' ;
28
28
import { isDialogVisible , dispatchHideDialog } from '../../core/ComponentCntlr.js' ;
29
29
import { updateSet } from '../../util/WebUtil.js' ;
30
30
import { PlotlyWrapper } from '../../charts/ui/PlotlyWrapper.jsx' ;
@@ -960,6 +960,16 @@ function setPFTableSuccess() {
960
960
961
961
doPFCalculate ( flux , timeName , period , tzero ) ;
962
962
963
+ const min = get ( reqData , fKeyDef . min . fkey , defPeriod . min ) ;
964
+ const max = get ( reqData , fKeyDef . max . fkey , defPeriod . max ) ;
965
+ const tzeroMax = get ( reqData , fKeyDef . tzmax . fkey . fkey , defPeriod . tzeroMax ) ;
966
+
967
+ const layoutInfo = getLayouInfo ( ) ;
968
+ dispatchUpdateLayoutInfo ( Object . assign ( { } , layoutInfo , {
969
+
970
+ periodRange : { min, max, tzero, tzeroMax, period}
971
+ } ) ) ;
972
+
963
973
if ( isDialogVisible ( popupId ) ) {
964
974
cancelPeriodogram ( ) ;
965
975
}
0 commit comments