diff --git a/packages/grafana-ui/src/components/Forms/InlineField.tsx b/packages/grafana-ui/src/components/Forms/InlineField.tsx index 4e249d2b537..01f3fa3a257 100644 --- a/packages/grafana-ui/src/components/Forms/InlineField.tsx +++ b/packages/grafana-ui/src/components/Forms/InlineField.tsx @@ -37,6 +37,7 @@ export const InlineField: FC = ({ invalid, loading, disabled, + required, className, htmlFor, grow, @@ -59,7 +60,7 @@ export const InlineField: FC = ({ htmlFor={inputId} transparent={transparent} > - {label} + {`${label}${required ? ' *' : ''}`} ) : ( label