pull/1503/head
Rick Carlino 2019-10-10 15:13:35 -05:00
parent a2487d9b2e
commit 65226a32e4
2 changed files with 9 additions and 3 deletions

View File

@ -75,7 +75,7 @@ export const SequenceSetting = (props: SequenceSettingProps) => {
<label>
{t(props.label)}
</label>
<Help text={t(props.description)} requireClick={true}/>
<Help text={t(props.description)} requireClick={true} />
<ToggleButton
toggleValue={value}
toggleAction={() => proceed() &&
@ -123,7 +123,12 @@ interface SequenceBtnGroupProps {
}
const SequenceBtnGroup = ({
dispatch, sequence, syncStatus, resources, shouldDisplay, menuOpen,
dispatch,
sequence,
syncStatus,
resources,
shouldDisplay,
menuOpen,
getWebAppConfigValue
}: SequenceBtnGroupProps) =>
<div className="button-group">

View File

@ -118,7 +118,8 @@ export class RefactoredExecuteBlock
onChange={assignVariable(this.props)(currentStep.body || [])}
locationDropdownKey={JSON.stringify(currentSequence)}
allowedVariableNodes={AllowedVariableNodes.identifier}
shouldDisplay={this.props.shouldDisplay} />
shouldDisplay={this.props.shouldDisplay}
hideGroups={false} />
</Col>}
</Row>
</StepContent>