Compare commits

..

2 Commits

Author SHA1 Message Date
wh1te909
0da1950427 Release 0.3.3 2021-01-18 11:01:25 +00:00
wh1te909
e590b921be fix #252 2021-01-18 11:00:50 +00:00
2 changed files with 10 additions and 3 deletions

View File

@@ -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"

View File

@@ -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;
},