Skip to content

Commit

Permalink
Merge pull request #9654 from jerolimov/odc-6201
Browse files Browse the repository at this point in the history
Bug 1986729: Mark sink title as required form field
  • Loading branch information
openshift-merge-robot committed Jul 28, 2021
2 parents 78a20be + 1c5d906 commit 33fdc09
Showing 1 changed file with 12 additions and 1 deletion.
Expand Up @@ -169,7 +169,18 @@ const SinkSection: React.FC<SinkSectionProps> = ({ namespace, fullWidth }) => {
const { t } = useTranslation();
return (
<FormSection
title={t('knative-plugin~Sink')}
title={
<>
{t('knative-plugin~Sink')}
<span
className="pf-c-form__label-required"
aria-hidden="true"
style={{ verticalAlign: 'top' }}
>
{' *'}
</span>
</>
}
subTitle={t(
'knative-plugin~Add a sink to route this Event source to a Channel, Broker, Knative Service or another route.',
)}
Expand Down

0 comments on commit 33fdc09

Please sign in to comment.