Skip to content

Commit

Permalink
Fix port delete in wb-mqtt-serial config editor (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
KraPete authored Nov 27, 2024
1 parent b33ccc1 commit 3cd5a48
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,14 @@ function getTabPaneContent(
onUpdateBootloader
) {
if (tab.type == TabType.PORT) {
return <PortTabContent tab={tab} index={index} onDeletePortDevices={onDeletePortDevices} />;
return (
<PortTabContent
tab={tab}
index={index}
onDeleteTab={onDeleteTab}
onDeletePortDevices={onDeletePortDevices}
/>
);
}
if (tab.type == TabType.DEVICE) {
return (
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
wb-mqtt-homeui (2.105.2) stable; urgency=medium

* Fix port delete in wb-mqtt-serial config editor

-- Petr Krasnoshchekov <[email protected]> Wed, 27 Nov 2024 16:42:39 +0500

wb-mqtt-homeui (2.105.1) stable; urgency=medium

* Fix alarm title translation
Expand Down

0 comments on commit 3cd5a48

Please sign in to comment.