diff --git a/webui/react-ui/src/components/common/FormField.jsx b/webui/react-ui/src/components/common/FormField.jsx
index f5736d1..6f9e821 100644
--- a/webui/react-ui/src/components/common/FormField.jsx
+++ b/webui/react-ui/src/components/common/FormField.jsx
@@ -25,6 +25,13 @@ const FormField = ({
options = [],
required = false,
}) => {
+ // Create label with required indicator
+ const labelWithIndicator = required ? (
+ <>{label} *>
+ ) : (
+ label
+ );
+
// Render different input types
const renderInput = () => {
switch (type) {
@@ -38,7 +45,7 @@ const FormField = ({
checked={value === true || value === 'true'}
onChange={(e) => onChange(e.target.checked ? 'true' : 'false')}
/>
- {label}
+ {labelWithIndicator}
{helpText && {helpText}}
@@ -46,7 +53,7 @@ const FormField = ({
case 'select':
return (
<>
-
+