Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0da1950427 | ||
|
|
e590b921be |
@@ -15,11 +15,11 @@ EXE_DIR = os.path.join(BASE_DIR, "tacticalrmm/private/exe")
|
||||
AUTH_USER_MODEL = "accounts.User"
|
||||
|
||||
# latest release
|
||||
TRMM_VERSION = "0.3.2"
|
||||
TRMM_VERSION = "0.3.3"
|
||||
|
||||
# bump this version everytime vue code is changed
|
||||
# to alert user they need to manually refresh their browser
|
||||
APP_VER = "0.0.105"
|
||||
APP_VER = "0.0.106"
|
||||
|
||||
# https://github.com/wh1te909/salt
|
||||
LATEST_SALT_VER = "1.1.0"
|
||||
|
||||
@@ -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