Delinting

This commit is contained in:
Ivan Bratović 2021-11-02 13:11:33 +01:00
parent 23736549f9
commit 0dcb7aed21
2 changed files with 4 additions and 5 deletions

View File

@ -87,9 +87,9 @@ class Monitor extends BeanModel {
* for HTTP "basic" auth, as per RFC-7617 * for HTTP "basic" auth, as per RFC-7617
* @returns {string} * @returns {string}
*/ */
encodeB64(user, pass) { encodeB64(user, pass) {
return btoa(user + ":" + pass); return btoa(user + ":" + pass);
} }
/** /**
* Parse to boolean * Parse to boolean
@ -157,7 +157,7 @@ class Monitor extends BeanModel {
if (this.basicauth_user) { if (this.basicauth_user) {
basicauthHeader = { basicauthHeader = {
"Authorization": "Basic " + this.encodeB64(this.basicauth_user, this.basicauth_pass) "Authorization": "Basic " + this.encodeB64(this.basicauth_user, this.basicauth_pass)
} };
} }
const options = { const options = {

View File

@ -266,7 +266,7 @@
<textarea id="headers" v-model="monitor.headers" class="form-control" :placeholder="headersPlaceholder"></textarea> <textarea id="headers" v-model="monitor.headers" class="form-control" :placeholder="headersPlaceholder"></textarea>
</div> </div>
<!-- HTTP Basic Auth --> <!-- HTTP Basic Auth -->
<h4 class="mt-5 mb-2">{{ $t("HTTP Basic Auth") }}</h4> <h4 class="mt-5 mb-2">{{ $t("HTTP Basic Auth") }}</h4>
<div class="my-3"> <div class="my-3">
<label for="basicauth" class="form-label">{{ $t("Username") }}</label> <label for="basicauth" class="form-label">{{ $t("Username") }}</label>
@ -496,7 +496,6 @@ export default {
this.monitor.headers = JSON.stringify(JSON.parse(this.monitor.headers), null, 4); this.monitor.headers = JSON.stringify(JSON.parse(this.monitor.headers), null, 4);
} }
if (this.isAdd) { if (this.isAdd) {
this.$root.add(this.monitor, async (res) => { this.$root.add(this.monitor, async (res) => {