Skip to content

Commit

Permalink
Release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Jan 18, 2021
2 parents 0946269 + e590b92 commit 0da1950
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions api/tacticalrmm/tacticalrmm/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
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"
Expand Down
9 changes: 8 additions & 1 deletion web/src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down

0 comments on commit 0da1950

Please sign in to comment.