diff --git a/frontend/src/components/v2/FormControl/FormControl.tsx b/frontend/src/components/v2/FormControl/FormControl.tsx index 45f3f9cd1..8651422a1 100644 --- a/frontend/src/components/v2/FormControl/FormControl.tsx +++ b/frontend/src/components/v2/FormControl/FormControl.tsx @@ -83,6 +83,7 @@ export type FormControlProps = { className?: string; icon?: ReactNode; tooltipText?: ReactElement | string; + tooltipClassName?: string; }; export const FormControl = ({ @@ -96,7 +97,8 @@ export const FormControl = ({ isError, icon, className, - tooltipText + tooltipText, + tooltipClassName }: FormControlProps): JSX.Element => { return (
Example Formats:
+
+ {/* eslint-disable-next-line react/jsx-no-comment-textnodes */}
+ // .json
+ {JSON.stringify(
+ {
+ APP_NAME: "example-service",
+ APP_VERSION: "1.2.3",
+ NODE_ENV: "production"
+ },
+ null,
+ 2
+ )}
+
+ ++# .env
+APP_NAME="example-service"
+APP_VERSION="1.2.3"
+NODE_ENV="production"
+
++# .yml
+APP_NAME: example-service
+APP_VERSION: 1.2.3
+NODE_ENV: production
+