Skip to content

Commit e86348e

Browse files
committed
fix: Add virtual indicator to placeholder in dev pages
1 parent 855373e commit e86348e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/multiselect/custom-render-option.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default function SelectPage() {
7373
i18nStrings={{ ...i18nStrings, selectAllText: 'Select all' }}
7474
filteringType={'auto'}
7575
renderOption={renderOptionItem}
76-
placeholder="Choose option"
76+
placeholder={'Choose option ' + (virtualScroll ? '(virtual)' : '')}
7777
selectedOptions={selectedOptions}
7878
onChange={event => {
7979
setSelectedOptions(event.detail.selectedOptions);

0 commit comments

Comments
 (0)