@@ -338,35 +338,35 @@ export class DurationPicker extends React.Component<IDurationPickerProps, IDurat
338338 return (
339339 < Stack horizontal styles = { stackStyles } disableShrink tokens = { numericalSpacingStackTokens } >
340340 < Stack styles = { stackStyles } >
341- < IconButton title = { upIcon } id = { Time . Hours } iconProps = { { iconName : upIcon } } styles = { buttonStyle }
341+ < IconButton id = { Time . Hours } iconProps = { { iconName : upIcon } } styles = { buttonStyle }
342342 onMouseDown = { ( ) => this . startContinuousIncrement ( Time . Hours ) }
343343 onMouseUp = { ( ) => this . stopContinuousIncrement ( ) }
344344 onMouseOut = { ( ) => this . stopContinuousDecrement ( ) }
345345 onKeyDown = { ( e ) => this . onKeyDown ( e , increment , Time . Hours ) }
346- onKeyUp = { this . onKeyUp } />
346+ onKeyUp = { this . onKeyUp } />
347347 < TextField styles = { narrowTextFieldStyles } value = { this . setHoursText ( ) }
348348 onChange = { ( e : any ) => this . onTextChange ( e , Time . Hours ) } borderless placeholder = "--" />
349- < IconButton title = { downIcon } id = { Time . Hours } iconProps = { { iconName : downIcon } } styles = { buttonStyle }
349+ < IconButton id = { Time . Hours } iconProps = { { iconName : downIcon } } styles = { buttonStyle }
350350 onMouseDown = { ( ) => { this . startContinuousDecrement ( Time . Hours ) } }
351351 onMouseUp = { ( ) => this . stopContinuousDecrement ( ) }
352352 onMouseOut = { ( ) => this . stopContinuousDecrement ( ) }
353353 onKeyDown = { ( e ) => this . onKeyDown ( e , decrement , Time . Hours ) }
354- onKeyUp = { this . onKeyUp } />
354+ onKeyUp = { this . onKeyUp } />
355355 < Text > HRS </ Text >
356356 </ Stack >
357357 < Stack horizontalAlign = "center" styles = { centerStackStyles } >
358358 < span > :</ span >
359359 </ Stack >
360360 < Stack styles = { stackStyles } >
361- < IconButton title = { upIcon } id = { Time . Minutes } iconProps = { { iconName : upIcon } } styles = { buttonStyle }
361+ < IconButton id = { Time . Minutes } iconProps = { { iconName : upIcon } } styles = { buttonStyle }
362362 onMouseDown = { ( ) => this . startContinuousIncrement ( Time . Minutes ) }
363363 onMouseUp = { ( ) => this . stopContinuousIncrement ( ) }
364364 onMouseOut = { ( ) => this . stopContinuousDecrement ( ) }
365365 onKeyDown = { ( e ) => this . onKeyDown ( e , increment , Time . Minutes ) }
366- onKeyUp = { this . onKeyUp } />
366+ onKeyUp = { this . onKeyUp } />
367367 < TextField styles = { narrowTextFieldStyles } value = { this . setMinutesText ( ) }
368368 onChange = { ( e : any ) => this . onTextChange ( e , Time . Minutes ) } borderless placeholder = "--" />
369- < IconButton title = { downIcon } id = { Time . Minutes } iconProps = { { iconName : downIcon } } styles = { buttonStyle }
369+ < IconButton id = { Time . Minutes } iconProps = { { iconName : downIcon } } styles = { buttonStyle }
370370 onMouseDown = { ( ) => this . startContinuousDecrement ( Time . Minutes ) }
371371 onMouseUp = { ( ) => this . stopContinuousDecrement ( ) }
372372 onMouseOut = { ( ) => this . stopContinuousDecrement ( ) }
0 commit comments