Skip to content

Commit

Permalink
feat(version): release 0.30.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Jan 10, 2024
1 parent c81de6a commit 079fd59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.30.0",
"version": "0.30.1",
"private": true,
"scripts": {
"dev": "react-scripts start",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Machine3D/Machine3D.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ export default function Machine3D({ item }: IMachine3D) {
<meshNormalMaterial
transparent={
findBarcodeInput && item.barcode.includes(findBarcodeInput)
? true
: false
? false
: true
}
opacity={
findBarcodeInput && item.barcode.includes(findBarcodeInput) ? 0.1 : 1
findBarcodeInput && item.barcode.includes(findBarcodeInput) ? 1 : 0.1
}
/>
{hovered && (
Expand Down

0 comments on commit 079fd59

Please sign in to comment.