Skip to content

Commit

Permalink
Merge pull request #2057 from proddy/dev
Browse files Browse the repository at this point in the history
fixes #2056
  • Loading branch information
proddy authored Sep 26, 2024
2 parents 64fbc1e + 68efcf3 commit 243da88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@preact/preset-vite": "^2.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/formidable": "^3",
"@types/node": "^22.7.2",
"@types/node": "^22.7.3",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
Expand Down
2 changes: 1 addition & 1 deletion interface/src/app/main/Customizations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ const Customizations = () => {

const filter_entity = (de: DeviceEntity) =>
(de.m & selectedFilters || !selectedFilters) &&
formatName(de, true).includes(search.toLocaleLowerCase());
formatName(de, true).includes(search);

const maskDisabled = (set: boolean) => {
setDeviceEntities(
Expand Down
10 changes: 5 additions & 5 deletions interface/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1446,12 +1446,12 @@ __metadata:
languageName: node
linkType: hard

"@types/node@npm:^22.7.2":
version: 22.7.2
resolution: "@types/node@npm:22.7.2"
"@types/node@npm:^22.7.3":
version: 22.7.3
resolution: "@types/node@npm:22.7.3"
dependencies:
undici-types: "npm:~6.19.2"
checksum: 10c0/987e4df034e4af0ce76b938c2c0d94373da376b228f1c93081a661c77e682795c599bcad47c93c70a25b8ea443587137cf23088fb7f62ef442955f13046eae3d
checksum: 10c0/0e579813528b0370454337a952f43b792cd12731e10fdca0fdb627158e980c1219bba99e9048c134b6a19325d817016059afe016ccd372326c838a1b85a51574
languageName: node
linkType: hard

Expand Down Expand Up @@ -1678,7 +1678,7 @@ __metadata:
"@table-library/react-table-library": "npm:4.1.7"
"@trivago/prettier-plugin-sort-imports": "npm:^4.3.0"
"@types/formidable": "npm:^3"
"@types/node": "npm:^22.7.2"
"@types/node": "npm:^22.7.3"
"@types/react": "npm:^18.3.9"
"@types/react-dom": "npm:^18.3.0"
"@types/react-router-dom": "npm:^5.3.3"
Expand Down

0 comments on commit 243da88

Please sign in to comment.