fix edit site bug v1.0.7

This commit is contained in:
wh1te909
2020-11-13 09:18:55 +00:00
parent 717803c665
commit a8d9fa75d4
2 changed files with 3 additions and 5 deletions

View File

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

View File

@@ -22,7 +22,7 @@
<div class="col-2">Client:</div>
<div class="col-2"></div>
<q-select
@input="agent.site = site_options[0]"
@input="agent.site = site_options[0].value"
dense
options-dense
outlined
@@ -196,8 +196,6 @@ export default {
this.agent.time_zone = this.timezone;
}
this.agent.site = this.agent.site.value;
this.$axios
.patch("/agents/editagent/", this.agent)
.then(r => {