We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some issues with validating env variables:
[a-zA-Z_]{1,}[a-zA-Z0-9_]*
Then remove the top one:
The text was updated successfully, but these errors were encountered:
The last issue is due to the validationState being wrong compared to this.state.env
this.state.env
(7 entries)
[ null, null, null, null, null, { "envKey": "Key must not be empty" }, {} ]
While this.state.env is (9 entries):
[ null, null, null, null, null, null, { "key": 6, "envKey": null, "envValue": null }, { "key": 7, "envKey": null, "envValue": null }, { "key": 8, "envKey": "jijij", "envValue": null } ]
While the UI shows:
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Some issues with validating env variables:
[a-zA-Z_]{1,}[a-zA-Z0-9_]*
Then remove the top one:
The text was updated successfully, but these errors were encountered: