Skip to content

Commit

Permalink
Try to correct: ioBroker/ioBroker.vis-2#5
Browse files Browse the repository at this point in the history
Background in Helper
  • Loading branch information
GermanBluefox committed Aug 22, 2023
1 parent 0fa3e97 commit 42be764
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@iobroker/vis-2-widgets-react-dev": "^0.4.6",
"@types/gulp": "^4.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.0",
"@types/node": "^20.5.1",
"eslint": "^8.47.0",
"gulp": "^4.0.2",
"mocha": "^10.2.0",
Expand Down
6 changes: 3 additions & 3 deletions src-widgets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@craco/craco": "^7.1.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@iobroker/adapter-react-v5": "^4.5.0",
"@iobroker/adapter-react-v5": "^4.5.3",
"@iobroker/vis-2-widgets-react-dev": "^0.4.6",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.5",
Expand All @@ -27,7 +27,7 @@
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.33.2",
Expand All @@ -42,7 +42,7 @@
"react-icons": "^4.10.1",
"react-leaflet": "^4.2.1",
"react-scripts": "^5.0.1",
"sass": "^1.66.0",
"sass": "^1.66.1",
"uuid": "^9.0.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-widgets/src/Wizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const WizardDialog = props => {
<div style={{ fontSize: 12, opacity: 0.7, marginLeft: 20 }}>{Generic.t('%s of %s devices selected', counters[roomId], room.devices.length)}</div>
</div>
</AccordionSummary>
<AccordionDetails sx={{ backgroundColor: props.themeType ? '#111' : '#eee' }}>
<AccordionDetails sx={{ backgroundColor: props.themeType === 'dark' ? '#111' : '#eee' }}>
{room.devices.map((device, deviceId) => <div key={device._id} style={{ backgroundColor: 'transparent' }}>
<div
style={{
Expand Down

0 comments on commit 42be764

Please sign in to comment.