We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b72ff commit 999ba03Copy full SHA for 999ba03
src/projects/detail/components/PhaseCard/EditStageForm.jsx
@@ -294,7 +294,11 @@ class EditStageForm extends React.Component {
294
type="number"
295
name="duration"
296
value={duration}
297
- minValue={1}
+ minValue={0 /*
298
+ if we set it as 1, if duration is in readonly mode with value 0
299
+ then in Webkit browsers we would get an error:
300
+ "An invalid form control with is not focusable."
301
+ so if we want to set it to 1, we have fix that error somehow first */}
302
readonly={hasTimeline}
303
readonlyValueTooltip="Phase duration is controlled by duration of individual milestones"
304
/>
0 commit comments