We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c5621d0 + 84c01e5 commit 173ae54Copy full SHA for 173ae54
2 files changed
src/lib/helpers/types/agentTypes.js
@@ -183,7 +183,7 @@
183
* @property {string} type
184
* @property {string} field
185
* @property {string} description
186
- * @property {string} fieldType
+ * @property {string} [field_type]
187
* @property {boolean} required
188
* @property {string} redirectTo
189
* @property {string?} [redirect_to_agent]
src/routes/page/agent/[agentId]/agent-components/agent-routing.svelte
@@ -38,10 +38,10 @@
38
<td class="arr-value">{rule.description}</td>
39
</tr>
40
{/if}
41
- {#if !!rule.fieldType}
+ {#if !!rule.field_type}
42
<tr class="arr-tr">
43
<th class="arr-key">Field Type</th>
44
- <td class="arr-value">{rule.fieldType}</td>
+ <td class="arr-value">{rule.field_type}</td>
45
46
47
0 commit comments