Skip to content

Commit

Permalink
fix(TimePicker): resolved border styling on open menu (#9214)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye committed Jun 1, 2023
1 parent e35b2ab commit 4a2b72c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-core/src/components/TimePicker/TimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,7 @@ export class TimePicker extends React.Component<TimePickerProps, TimePickerState
onChange={this.onInputChange}
autoComplete="off"
isDisabled={isDisabled}
isExpanded={isTimeOptionsOpen}
ref={this.inputRef}
{...inputProps}
/>
Expand Down Expand Up @@ -539,7 +540,7 @@ export class TimePicker extends React.Component<TimePickerProps, TimePickerState
<Popper
appendTo={calculatedAppendTo}
trigger={textInput}
triggerRef={this.inputRef}
triggerRef={this.toggleRef}
popper={menuContainer}
popperRef={this.menuRef}
isVisible={isTimeOptionsOpen}
Expand Down

0 comments on commit 4a2b72c

Please sign in to comment.