Fixes unexpected behavior of step panel dropdown (#1328)

* Fixes  dropdown

* Update defaultHtmlStepUi.js

* Update intermediateHtmlStepUi.js
This commit is contained in:
keshav234156
2019-12-10 04:29:14 +05:30
committed by Jeffrey Warren
parent 032971d269
commit 2459e53fda
2 changed files with 8 additions and 12 deletions

View File

@@ -75,8 +75,8 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
};
insertStep = function (id) {
const $step = step.ui.$step,
$stepAll = step.ui.$stepAll;
const $step = step.$step,
$stepAll = step.$stepAll;
var modulesInfo = _sequencer.modulesInfo();
var parser = new DOMParser();
var addStepUI = stepUI();
@@ -134,4 +134,4 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
insertStep
};
}
module.exports = IntermediateHtmlStepUi;
module.exports = IntermediateHtmlStepUi;