CSR-2260
CSR-2260 quote page should not auto advance any longer after page has been visited
This commit is contained in:
parent
e75411c19c
commit
ba7fb05ca2
1 changed files with 4 additions and 1 deletions
|
|
@ -348,7 +348,10 @@ export default {
|
||||||
);
|
);
|
||||||
const isExternalParameter = store.getters.externalParameterState?.isExternalParameter;
|
const isExternalParameter = store.getters.externalParameterState?.isExternalParameter;
|
||||||
|
|
||||||
if (isExternalParameter === externalParameterStatus.NOT_SET) {
|
if (
|
||||||
|
isExternalParameter === externalParameterStatus.NOT_SET ||
|
||||||
|
isExternalParameter === externalParameterStatus.INACTIVE
|
||||||
|
) {
|
||||||
// there are no active or inactive external parameters; use internal threshold
|
// there are no active or inactive external parameters; use internal threshold
|
||||||
if (internalThreshold) thresholdToUse = internalThreshold;
|
if (internalThreshold) thresholdToUse = internalThreshold;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue