Skip to content

Commit 4a730b7

Browse files
committed
Merge branch 'master' of https://github.com/nova1751/select
2 parents 9692325 + 640f7f3 commit 4a730b7

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

src/Selector/MultipleSelector.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,7 @@ const SelectSelector: React.FC<SelectorProps> = (props) => {
8686
? searchValue
8787
: '';
8888
const inputEditable: boolean =
89-
mode === 'tags' ||
90-
(mode === 'multiple' && autoClearSearchValue === false) ||
91-
(showSearch && (open || focused));
89+
mode === 'tags' || (mode === 'multiple' && showSearch) || (showSearch && (open || focused));
9290

9391
// We measure width and set to the input immediately
9492
useLayoutEffect(() => {

tests/Multiple.test.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -681,5 +681,16 @@ describe('Select.Multiple', () => {
681681
toggleOpen(wrapper);
682682
expect(wrapper.find('input').props().value).toBe('');
683683
});
684+
it('input should be readonly when autoClearSearchValue and showSearch are both false', () => {
685+
const wrapper = mount(
686+
<Select
687+
mode="multiple"
688+
autoClearSearchValue={false}
689+
showSearch={false}
690+
searchValue="test"
691+
/>,
692+
);
693+
expect(wrapper.find('input').props().readOnly).toBe(true);
694+
});
684695
});
685696
});

0 commit comments

Comments
 (0)