Skip to content

Commit

Permalink
fix(core): an issue where a tuple of lists where passed as active_inp…
Browse files Browse the repository at this point in the history
…uts instead of a list due to an unwanted comma - closes #212
  • Loading branch information
sassanh committed Jan 29, 2025
1 parent 428da53 commit 159f6a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- docs: update development documentation
- feat(web-ui): automatically run the wifi creation procedure when there is no ssid saved in the network manager and no default gateway is set - closes #214
- feat(web-ui): use captive portal in the hotspot started by web-ui - closes #211
- fix(core): an issue where a tuple of lists where passed as active_inputs instead of a list due to an unwanted comma - closes #212

## Version 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion ubo_app/services/090-web-ui/reducer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def reducer(
description
for description in state.active_inputs
if description.id != action.id
],
]
),
),
actions=[NotificationsClearByIdAction(id=f'web_ui:pending:{action.id}')],
Expand Down

0 comments on commit 159f6a5

Please sign in to comment.