diff --git a/components/smart/EnvInput.vue b/components/smart/EnvInput.vue
index e24bb827d..938e2203a 100644
--- a/components/smart/EnvInput.vue
+++ b/components/smart/EnvInput.vue
@@ -24,6 +24,7 @@
import IntervalTree from "node-interval-tree"
import debounce from "lodash/debounce"
import isUndefined from "lodash/isUndefined"
+import { getCurrentEnvironment } from "~/newstore/environments"
const tagsToReplace = {
"&": "&",
@@ -54,7 +55,7 @@ export default {
highlight: [
{
text: /(<<\w+>>)/g,
- style: "text-white bg-accentDark rounded px-1 mx-0.5",
+ style: "text-white rounded px-1 mx-0.5",
},
],
highlightEnabled: true,
@@ -174,14 +175,21 @@ export default {
result += this.safe_tags_replace(
this.internalValue.substring(startingPosition, position.start)
)
- result +=
- "" +
- this.safe_tags_replace(
- this.internalValue.substring(position.start, position.end + 1)
- ) +
- ""
+ const envVar = this.internalValue
+ .substring(position.start, position.end + 1)
+ .slice(2, -2)
+ result += `${this.safe_tags_replace(
+ this.internalValue.substring(position.start, position.end + 1)
+ )}`
startingPosition = position.end + 1
}
if (startingPosition < this.internalValue.length)
diff --git a/newstore/environments.ts b/newstore/environments.ts
index 7d0321cff..b09c76abd 100644
--- a/newstore/environments.ts
+++ b/newstore/environments.ts
@@ -210,7 +210,7 @@ export const currentEnvironment$ = combineLatest([
map(([envs, selectedIndex]) => {
if (selectedIndex === -1) {
const env: Environment = {
- name: "No Environment",
+ name: "No environment",
variables: [],
}
@@ -224,7 +224,7 @@ export const currentEnvironment$ = combineLatest([
export function getCurrentEnvironment(): Environment {
if (environmentsStore.value.currentEnvironmentIndex === -1) {
return {
- name: "No Environment",
+ name: "No environment",
variables: [],
}
}