Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Nov 20, 2023
1 parent 4e48911 commit 357824f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bundle/ui-dev/src/modules/common/dropdown/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const Dropdown = ({
setItemsListStyles(itemsStyles);
};
const renderItemsList = () => {
const placeholder = Translator.trans(/*@Desc("Search...")*/ 'dropdown.placeholder', {}, 'ibexa_universal_discovery_widget');
const searchPlaceholder = Translator.trans(/*@Desc("Search...")*/ 'dropdown.placeholder', {}, 'ibexa_universal_discovery_widget');
const itemsContainerClass = createCssClassNames({
'ibexa-dropdown__items': true,
'ibexa-dropdown__items--search-hidden': options.length < minSearchItems,
Expand All @@ -121,7 +121,7 @@ const Dropdown = ({
<div className="ibexa-input-text-wrapper">
<input
type="text"
placeholder={placeholder}
placeholder={searchPlaceholder}
className="ibexa-dropdown__items-filter ibexa-input ibexa-input--small ibexa-input--text form-control"
onChange={updateFilterValue}
value={filterText}
Expand Down

0 comments on commit 357824f

Please sign in to comment.