From c180b20932a5aa1d9bb5cc4c7209e3b66a3c1f30 Mon Sep 17 00:00:00 2001 From: Jan Garaj Date: Tue, 2 Jan 2024 20:17:26 +0000 Subject: [PATCH] Init --- README.md | 2 +- src/layouts/default/Default.vue | 4 ++-- src/views/Main.vue | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6c9df56..324bad7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Grafana Debugger -TODO \ No newline at end of file +TODO diff --git a/src/layouts/default/Default.vue b/src/layouts/default/Default.vue index db46473..b975e43 100644 --- a/src/layouts/default/Default.vue +++ b/src/layouts/default/Default.vue @@ -24,13 +24,13 @@ |
- Star: GitHub repository + Star: GitHub repository
|
- Feedback: New GitHub issue + Feedback: New GitHub issue
diff --git a/src/views/Main.vue b/src/views/Main.vue index da9d390..314b3be 100644 --- a/src/views/Main.vue +++ b/src/views/Main.vue @@ -89,7 +89,7 @@ Some debugging examples:

- Issue: SAML login is not available + Issue: SAML login is not available @@ -790,7 +790,7 @@ export default { for (var i = 0; i < this.inputVariables.length; i++) { var variable = this.inputVariables[i] if (this[variable] != null && this[variable] != "") { - hash = hash + "&" + variable + "=" + encodeURIComponent(this[variable]) + hash = hash + "&" + variable + "=" + encodeURI(this[variable]) } } window.location.hash = hash.substring(1) @@ -808,7 +808,7 @@ export default { var variable = variables[i] var parts = variable.split("=") if (parts.length == 2) { - this[parts[0]] = decodeURIComponent(parts[1]) + this[parts[0]] = decodeURI(parts[1]) } } },