- Notifications
You must be signed in to change notification settings - Fork928
fix(site): Do not show template params if there is no param to be shown#7263
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation
// We only want to show schema that have redisplay_value equals true | ||
const schemaToBeDisplayed = props.templateSchema?.filter( | ||
(schema) => schema.redisplay_value, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
The linked bug ticket mentions that terraform values set tosensitive
shouldn't appear in the UI. Does thesensitive
key map toredisplay_value
or is this something we have to check for separately?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Yeap, it should do!
Fix#7254