ensure port input is a string type
This commit is contained in:
parent
89d2bd0bec
commit
154648e5ea
|
@ -177,7 +177,7 @@
|
||||||
<EnvDropdown
|
<EnvDropdown
|
||||||
showModal={() => showModal(configKey)}
|
showModal={() => showModal(configKey)}
|
||||||
variables={$environment.variables}
|
variables={$environment.variables}
|
||||||
type={schema[configKey].type}
|
type={configKey === "port" ? "string" : schema[configKey].type}
|
||||||
on:change
|
on:change
|
||||||
bind:value={config[configKey]}
|
bind:value={config[configKey]}
|
||||||
error={$validation.errors[configKey]}
|
error={$validation.errors[configKey]}
|
||||||
|
|
Loading…
Reference in New Issue