feat: indicate global variable

This commit is contained in:
liyasthomas
2022-02-22 12:55:19 +05:30
parent be1bb520a0
commit afc109965a
3 changed files with 47 additions and 18 deletions

View File

@@ -59,6 +59,20 @@
</p>
</div>
</div>
<HttpTestResultEnv
v-for="(env, index) in testResults.envDiff.global.additions"
:key="`env-${env.key}-${index}`"
:env="env"
status="additions"
global
/>
<HttpTestResultEnv
v-for="(env, index) in testResults.envDiff.global.updations"
:key="`env-${env.key}-${index}`"
:env="env"
status="updations"
global
/>
<HttpTestResultEnv
v-for="(env, index) in testResults.envDiff.selected.additions"
:key="`env-${env.key}-${index}`"