{#each filteredCustom as v (v.id)}
{@render varInput(
- v.variableName,
+ 'packVariables.' + v.variableName,
v.displayName + (v.description ? ` — ${v.description}` : ''),
v.variableType,
v.enumOptions?.map((o) => o.value),
@@ -354,32 +262,6 @@
{/if}
-
-
- {#each filteredRuntimeGroups as group (group.name)}
-
-
-
-
- {group.name}
- {group.variables.length}
-
-
-
-
- {#each group.variables as v (v.name)}
- {@render varInput(v.name, v.description, v.type, v.enumValues)}
- {/each}
-
-
-
- {/each}