mirror of https://github.com/portainer/portainer
31 lines
694 B
TypeScript
31 lines
694 B
TypeScript
import {
|
|
EnvVarValues,
|
|
EnvironmentVariablesPanel,
|
|
} from '@@/form-components/EnvironmentVariablesFieldset';
|
|
import { ArrayError } from '@@/form-components/InputList/InputList';
|
|
|
|
export function EnvVarsTab({
|
|
values,
|
|
onChange,
|
|
errors,
|
|
}: {
|
|
values: EnvVarValues;
|
|
onChange(value: EnvVarValues): void;
|
|
errors?: ArrayError<EnvVarValues>;
|
|
}) {
|
|
return (
|
|
<div className="form-group">
|
|
<EnvironmentVariablesPanel
|
|
values={values}
|
|
explanation="These values will be applied to the container when deployed"
|
|
onChange={handleChange}
|
|
errors={errors}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
function handleChange(values: EnvVarValues) {
|
|
onChange(values);
|
|
}
|
|
}
|