Skip to content

Commit

Permalink
fix: not set value for envNamePattern
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsweet committed Sep 24, 2024
1 parent 1cf7523 commit 32cc9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-ui/src/plugins/components/deployments/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const Deployments = ({ style, plugin, connectionId, transformation, setTr
<Select.Option value="regex">matches</Select.Option>
</Select>
{type === 'regex' ? (
<Input placeholder="(?i)prod(.*)" onChange={handleChangeRegex} />
<Input placeholder="(?i)prod(.*)" value={transformation.envNamePattern} onChange={handleChangeRegex} />
) : (
<Select
mode="tags"
Expand Down

0 comments on commit 32cc9cf

Please sign in to comment.