Skip to content

Commit

Permalink
feat: mark project required fields with *
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstefanequilobe committed Feb 10, 2022
1 parent 78e1b32 commit 90634c1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/forms/CreateCoBenefitsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const CreateCoBenefitsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="co-benefit" />
*<FormattedMessage id="co-benefit" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down
6 changes: 3 additions & 3 deletions src/components/forms/CreateEstimationsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const CreateEstimationsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="crediting-period-start" />
*<FormattedMessage id="crediting-period-start" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand All @@ -69,7 +69,7 @@ const CreateEstimationsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="crediting-period-end" />
*<FormattedMessage id="crediting-period-end" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand All @@ -94,7 +94,7 @@ const CreateEstimationsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="unit-count" />
*<FormattedMessage id="unit-count" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down
4 changes: 2 additions & 2 deletions src/components/forms/CreateLocationsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const CreateLocationsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="host-country" />
*<FormattedMessage id="host-country" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down Expand Up @@ -120,7 +120,7 @@ const CreateLocationsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="geographic-identifier" />
*<FormattedMessage id="geographic-identifier" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down
10 changes: 5 additions & 5 deletions src/components/forms/CreateRatingsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const CreateRatingsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="rating-type" />
*<FormattedMessage id="rating-type" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down Expand Up @@ -117,7 +117,7 @@ const CreateRatingsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="rating-range-highest" />
*<FormattedMessage id="rating-range-highest" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down Expand Up @@ -148,7 +148,7 @@ const CreateRatingsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="rating-range-lowest" />
*<FormattedMessage id="rating-range-lowest" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down Expand Up @@ -177,7 +177,7 @@ const CreateRatingsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="rating" />
*<FormattedMessage id="rating" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand All @@ -204,7 +204,7 @@ const CreateRatingsForm = ({ value, onChange }) => {
<StyledLabelContainer>
<Body>
<LabelContainer>
<FormattedMessage id="rating-link" />
*<FormattedMessage id="rating-link" />
</LabelContainer>
<ToolTipContainer
tooltip={intl.formatMessage({
Expand Down

0 comments on commit 90634c1

Please sign in to comment.