diff --git a/modelina-website/src/components/playground/options/CSharpGeneratorOptions.tsx b/modelina-website/src/components/playground/options/CSharpGeneratorOptions.tsx
index 0619151b2a..de58096e89 100644
--- a/modelina-website/src/components/playground/options/CSharpGeneratorOptions.tsx
+++ b/modelina-website/src/components/playground/options/CSharpGeneratorOptions.tsx
@@ -2,6 +2,7 @@ import React from 'react';
import { PlaygroundCSharpConfigContext } from '@/components/contexts/PlaygroundConfigContext';
import Select from '@/components/Select';
import { debounce } from 'lodash';
+import InfoModal from '@/components/InfoModal';
interface CSharpGeneratorOptionsProps {
setNewConfig?: (queryKey: string, queryValue: string) => void;
@@ -23,10 +24,13 @@ class CSharpGeneratorOptions extends React.Component<
super(props);
this.state = defaultState;
this.onChangeArrayType = this.onChangeArrayType.bind(this);
- this.onChangeAutoImplementProperties = this.onChangeAutoImplementProperties.bind(this);
- this.onChangeOverwriteHashCodeSupport = this.onChangeOverwriteHashCodeSupport.bind(this);
+ this.onChangeAutoImplementProperties =
+ this.onChangeAutoImplementProperties.bind(this);
+ this.onChangeOverwriteHashCodeSupport =
+ this.onChangeOverwriteHashCodeSupport.bind(this);
this.onChangeIncludeJson = this.onChangeIncludeJson.bind(this);
- this.onChangeOverwriteEqualSupport = this.onChangeOverwriteEqualSupport.bind(this);
+ this.onChangeOverwriteEqualSupport =
+ this.onChangeOverwriteEqualSupport.bind(this);
this.onChangeIncludeNewtonsoft = this.onChangeIncludeNewtonsoft.bind(this);
this.onChangeNullable = this.onChangeNullable.bind(this);
this.onChangeNamespace = this.onChangeNamespace.bind(this);
@@ -62,7 +66,7 @@ class CSharpGeneratorOptions extends React.Component<
this.props.setNewConfig('csharpOverwriteEqual', event.target.checked);
}
}
-
+
onChangeIncludeNewtonsoft(event: any) {
if (this.props.setNewConfig) {
this.props.setNewConfig('csharpIncludeNewtonsoft', event.target.checked);
@@ -80,7 +84,7 @@ class CSharpGeneratorOptions extends React.Component<
}
onChangeNamespace(event: any) {
- this.setState({ ...this.state, namespace: event.target.value })
+ this.setState({ ...this.state, namespace: event.target.value });
if (this.props.setNewConfig) {
this.debouncedSetNewConfig('csharpNamespace', event.target.value);
}
@@ -94,8 +98,18 @@ class CSharpGeneratorOptions extends React.Component<
CSharp Specific options
-
-