-
Environment Variables
- {variables && variables.length ? (
- variables.map((variable) => {
- return (
-
-
{variable.name}
-
- {getValueToDisplay(variable.value)}
-
-
- );
- })
- ) : (
-
No env variables found
- )}
-
-
Collection Variables
- {collectionVars && collectionVars.length ? (
- collectionVars.map((variable) => {
- return (
-
-
{variable.name}
-
- {getValueToDisplay(variable.value)}
-
-
- );
- })
- ) : (
-
No collection variables found
- )}
-
-