Skip to content

Commit

Permalink
Fix label attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Ndpnt committed Oct 18, 2023
1 parent 596a519 commit 9c9e3d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ Thank you very much`;
</div>
<div className={classNames('formfield')}>
<div className={classNames('select', 'mt__XS')}>
<label for="executeClientScripts">{t('service:form.executeClientScripts')}
<label htmlFor="executeClientScripts">{t('service:form.executeClientScripts')}
<input
id="executeClientScripts"
type="checkbox"
Expand All @@ -552,7 +552,7 @@ Thank you very much`;
</div>
{!isPDF && (
<div className={classNames('formfield')}>
<label for="bypassCookies" >{t('service:form.bypassCookies')}
<label htmlFor="bypassCookies" >{t('service:form.bypassCookies')}
<input
id="bypassCookies"
type="checkbox"
Expand Down

0 comments on commit 9c9e3d7

Please sign in to comment.