Skip to content

Commit 8983a2e

Browse files
committed
fix(integrations): provide correct template params
1 parent d26c513 commit 8983a2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/src/components/IntegrationForm.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
v-if="item.template_id"
6262
v-model="item.task_params"
6363
:app="(template || {}).app"
64+
:template-params="(template || {}).task_params || {}"
6465
/>
6566
</v-form>
6667
</template>
@@ -101,7 +102,7 @@ export default {
101102
102103
computed: {
103104
isLoaded() {
104-
return this.keys != null;
105+
return this.item && this.keys != null;
105106
},
106107
107108
loginPasswordKeys() {

0 commit comments

Comments
 (0)