Skip to content

Commit

Permalink
Fixed Search Input different tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
aliraza556 committed Mar 21, 2024
1 parent a92cd5c commit ef20cd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/common/SearchTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Text = styled.input`
box-sizing: border-box;
border-radius: 21px;
padding-left: 20px;
padding-right: 10px;
padding-right: 26px;
// width:100%;
font-style: normal;
font-weight: normal;
Expand Down Expand Up @@ -61,7 +61,7 @@ function SearchTextInput(props: SearchTextInputProps) {
onChange={(e: any) => {
setSearchValue(e.target.value);
debounceValue = e.target.value;
debounce(doDelayedValueUpdate, 300);
debounce(doDelayedValueUpdate, 800);
}}
placeholder={'Search'}
style={{ ...props.style, ...collapseStyles }}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/people/peopleList/PeopleList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ export const PeopleList = observer(() => {
width: 120,
height: 40,
border: '1px solid #DDE1E5',
background: '#fff',
paddingRight: '26px'
background: '#fff'
}}
onChange={handleSearchChange}
/>
Expand Down

0 comments on commit ef20cd0

Please sign in to comment.