Skip to content

Commit

Permalink
EPMRPP-97602 || fix sonarcloud
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazarQSO committed Jan 20, 2025
1 parent ccc73c9 commit b342ce3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion app/src/components/main/filter/filter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ Filter.propTypes = {
onFilterChange: PropTypes.func.isRequired,
appliedFiltersCount: PropTypes.number.isRequired,
setAppliedFiltersCount: PropTypes.func.isRequired,
defaultFilters: PropTypes.object.isRequired,
filteredAction: PropTypes.func.isRequired,
teammatesFilterMessage: PropTypes.string.isRequired,
};
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const FilterInput = ({ filter, onChange }) => {
.map(({ name, placeholder, options, value, condition }) => {
if (options) {
return (
<FieldProvider name={name}>
<FieldProvider key={name} name={name}>
<Dropdown
options={options}
value={condition}
Expand All @@ -51,7 +51,7 @@ export const FilterInput = ({ filter, onChange }) => {

return (
<div className={cx('input-field-container')}>
<FieldProvider name={name}>
<FieldProvider key={name} name={name}>
<FieldText
name={filterName}
className={cx('input-field')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,4 @@
-webkit-appearance: none;
margin: 0;
}

input[type=number] {
-moz-appearance: textfield;
}
}

0 comments on commit b342ce3

Please sign in to comment.