Skip to content

Commit

Permalink
fix: modify readonly property condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cjeongmin committed Oct 1, 2024
1 parent b4bdb88 commit eed0e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SearchBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function SearchBox({
className={className}
>
<styles.searchInput
readOnly={dropBoxVisible}
readOnly={dropBoxType != null}
placeholder={placeholder || '키워드나 활동을 찾아보세요.'}
value={value ?? ''}
onChange={
Expand Down

0 comments on commit eed0e1b

Please sign in to comment.