Skip to content

Commit

Permalink
Possibly fix input losing focus sometimes
Browse files Browse the repository at this point in the history
Could not reproduce on master version
  • Loading branch information
brunolemos committed Jul 4, 2019
1 parent 67d2e38 commit 6373349
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const CardsSearchHeader = React.memo((props: CardsSearchHeaderProps) => {
key={`cards-search-header-column-${column.id}`}
autoCapitalize="none"
autoCorrect={false}
autoFocus={autoFocus}
autoFocus={autoFocus || isFocused}
blurOnSubmit={false}
borderHoverThemeColor={isPendingSave ? 'yellow' : undefined}
borderThemeColor={isPendingSave ? 'yellow' : undefined}
Expand Down

0 comments on commit 6373349

Please sign in to comment.