Skip to content

Commit

Permalink
FIX: release bugs (#1981)
Browse files Browse the repository at this point in the history
* FIX: Settings via Alert on Control Page

* FIX: setup selectable on control

* FIX: Volume Selection in Settings
  • Loading branch information
mabasian authored Aug 7, 2024
1 parent 95abd60 commit 4830d73
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 322 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@ const noValidatorHandler = (setup) => {
};
const toggleDropdown = () => {
isOpen.value = !isOpen.value;
if (setupsList.value.length > 1 && route.path === "/control") {
isOpen.value = !isOpen.value;
} else if (setupsList.value.length > 0 && route.path !== "/control") {
isOpen.value = !isOpen.value;
}
};
const selectRename = () => {
Expand Down
Loading

0 comments on commit 4830d73

Please sign in to comment.