mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-02-23 12:53:38 +00:00
fix #252
This commit is contained in:
@@ -764,9 +764,16 @@ export default {
|
||||
clientsTree: state => state.tree,
|
||||
treeReady: state => state.treeReady,
|
||||
clients: state => state.clients,
|
||||
tab: state => state.defaultAgentTblTab,
|
||||
}),
|
||||
...mapGetters(["selectedAgentPk", "needRefresh"]),
|
||||
tab: {
|
||||
get: function () {
|
||||
return this.$store.state.defaultAgentTblTab;
|
||||
},
|
||||
set: function (newVal) {
|
||||
this.$store.commit("SET_DEFAULT_AGENT_TBL_TABd", newVal);
|
||||
},
|
||||
},
|
||||
allClientsActive() {
|
||||
return this.selectedTree === "" ? true : false;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user