We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f44f14 + c840b72 commit 456eee5Copy full SHA for 456eee5
1 file changed
src/components/Configurations/RequestConfigurationsDetail.vue
@@ -127,6 +127,20 @@
127
</b-row>
128
</li>
129
</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
141
+ </b-row>
142
+ </li>
143
+ </ul>
144
</b-col>
145
146
</b-card-body>
0 commit comments