Skip to content

Commit c840b72

Browse files
author
Jon
committed
Add the configuration extra params to the request details page
1 parent 2f44f14 commit c840b72

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/components/Configurations/RequestConfigurationsDetail.vue

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,20 @@
127127
</b-row>
128128
</li>
129129
</ul>
130+
<br />
131+
<h4 v-if="!isObjEmpty(configuration.extra_params)">Config Extra Params</h4>
132+
<ul class="list-unstyled card-count card-column-two">
133+
<li v-for="(x, idx) in configuration.extra_params" :key="'config-extra-params-' + idx">
134+
<b-row v-if="configuration.extra_params[idx] && x">
135+
<b-col v-if="configuration.extra_params[idx]" class="font-weight-bold text-nowrap">
136+
{{ idx | formatField }}
137+
</b-col>
138+
<b-col v-if="x" class="text-right">
139+
<span>{{ x | formatValue }}</span>
140+
</b-col>
141+
</b-row>
142+
</li>
143+
</ul>
130144
</b-col>
131145
</b-row>
132146
</b-card-body>

0 commit comments

Comments
 (0)