Skip to content

Commit

Permalink
RENDEZVOUS-749: fixed js error messages not appearing on getComment
Browse files Browse the repository at this point in the history
modal form
  • Loading branch information
elysajouve committed Jul 5, 2022
1 parent f8181e5 commit 166ab5f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
<@formGroup labelFor='comment' labelKey='#i18n{appointment.comment.name}' helpKey='#i18n{appointment.comment.name}' mandatory=true rows=2>
<@input type='textarea' name='comment' id=idComment richtext=true />
</@formGroup>
<@formGroup labelFor='startingValidityDate' labelKey=startDateLabel mandatory=true rows=2>
<@formGroup labelFor='startingValidityDate' labelKey=startDateLabel helpKey='&nbsp;' mandatory=true rows=2>
<@inputGroup class='date' id='${idStartingDate}Group'>
<#if startDateIsToday>
<@input type='date' name='startingValidityDate' id=idStartingDate defaultDate='today' />
Expand All @@ -203,23 +203,23 @@
</@inputGroupItem>
</@inputGroup>
</@formGroup>
<@formGroup labelFor='startingValidityTime' labelKey=startTimeLabel rows=2>
<@formGroup labelFor='startingValidityTime' labelKey=startTimeLabel helpKey='&nbsp;' rows=2>
<@inputGroup id='${idStartingTime}Group' class='date'>
<@input type='time' name='startingValidityTime' id=idStartingTime value='00:00' />
<@inputGroupItem type='text' >
<@icon style='clock' />
</@inputGroupItem>
</@inputGroup>
</@formGroup>
<@formGroup labelFor=idEndingDate labelKey=endDateLabel helpKey='' mandatory=true rows=2>
<@formGroup labelFor=idEndingDate labelKey=endDateLabel helpKey='&nbsp;' mandatory=true rows=2>
<@inputGroup class='date' id='${idEndingDate}Group'>
<@input type='date' name='endingValidityDate' id=idEndingDate />
<@inputGroupItem type='text'>
<@icon style='calendar' />
</@inputGroupItem>
</@inputGroup>
</@formGroup>
<@formGroup labelFor='endingValidityTime' labelKey=endTimeLabel helpKey='' rows=0>
<@formGroup labelFor='endingValidityTime' labelKey=endTimeLabel helpKey='&nbsp;' rows=2>
<@inputGroup class='date' id='${idEndingTime}Group'>
<@input type='time' name='endingValidityTime' id=idEndingTime value='00:00' />
<@inputGroupItem type='text'>
Expand Down

0 comments on commit 166ab5f

Please sign in to comment.