Skip to content

Commit

Permalink
fix(client): fixed the client's state not associating agent and host …
Browse files Browse the repository at this point in the history
…picking to being inside a menu
  • Loading branch information
will-moss committed Mar 29, 2024
1 parent 5a3e8f8 commit d5d15de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/client/assets/js/isaiah.js
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,12 @@
* @returns {boolean}
*/
get isMenuIng() {
return state.popup && ['menu', 'bulk', 'theme'].includes(state.popup);
return (
state.popup &&
['menu', 'bulk', 'theme', 'agent', 'host', 'parameters'].includes(
state.popup
)
);
},

/**
Expand Down

0 comments on commit d5d15de

Please sign in to comment.