We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c56455b commit a8bfccaCopy full SHA for a8bfcca
front/src/applications/stdcm/components/StdcmForm/StdcmConfig.tsx
@@ -197,10 +197,11 @@ const StdcmConfig = ({
197
<Button
198
data-testid="launch-simulation-button"
199
className={cx({
200
- 'fade-out': !showBtnToLaunchSimulation,
+ 'fade-out': isPending || !showBtnToLaunchSimulation,
201
})}
202
label={t('simulation.getSimulation')}
203
onClick={startSimulation}
204
+ isDisabled={disabled || !showBtnToLaunchSimulation}
205
/>
206
{formErrors && (
207
<StdcmWarningBox
0 commit comments