Compare commits

..

3 Commits

Author SHA1 Message Date
wh1te909
20befd1ca2 Release 0.1.5 2020-11-11 05:32:00 +00:00
wh1te909
ac6c6130f8 version 0.1.5 2020-11-11 05:31:32 +00:00
wh1te909
d776a2325c fix filter not resetting text length on clear 2020-11-11 05:30:24 +00:00
2 changed files with 3 additions and 2 deletions

View File

@@ -10,11 +10,11 @@ EXE_DIR = os.path.join(BASE_DIR, "tacticalrmm/private/exe")
AUTH_USER_MODEL = "accounts.User" AUTH_USER_MODEL = "accounts.User"
# latest release # latest release
TRMM_VERSION = "0.1.4" TRMM_VERSION = "0.1.5"
# bump this version everytime vue code is changed # bump this version everytime vue code is changed
# to alert user they need to manually refresh their browser # to alert user they need to manually refresh their browser
APP_VER = "0.0.86" APP_VER = "0.0.87"
# https://github.com/wh1te909/salt # https://github.com/wh1te909/salt
LATEST_SALT_VER = "1.1.0" LATEST_SALT_VER = "1.1.0"

View File

@@ -633,6 +633,7 @@ export default {
return node.color === "warning" ? "Disable Maintenance Mode" : "Enable Maintenance Mode"; return node.color === "warning" ? "Disable Maintenance Mode" : "Enable Maintenance Mode";
}, },
clearFilter() { clearFilter() {
this.filterTextLength = 0;
this.filterPatchesPending = false; this.filterPatchesPending = false;
this.filterRebootNeeded = false; this.filterRebootNeeded = false;
this.filterChecksFailing = false; this.filterChecksFailing = false;