Skip to content

Commit

Permalink
fix(ZMS-3466): fix open from and open to placeholders in form
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Fink authored and Thomas Fink committed Jan 27, 2025
1 parent 227e741 commit 694194b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zmsadmin/js/page/availabilityDay/form/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ const FormContent = (props) => {
<Label attributes={{"htmlFor": "AvDayOpenfrom", "className": "light"}}>von</Label>
<Inputs.Text name="open_from"
width="3"
value={data.open_from}
attributes={{ placeholder: data.scope.preferences.appointment.startInDaysDefault, "id": "AvDayOpenfrom", "aria-describedby": "help_AvDayOpenfromto" }}
{...{ onChange }}
/>
Expand All @@ -149,6 +150,7 @@ const FormContent = (props) => {
<Label attributes={{"htmlFor": "AvDayOpento", "className": "light"}}>bis</Label>
<Inputs.Text name="open_to"
width="3"
value={data.open_to}
attributes={{ placeholder: data.scope.preferences.appointment.endInDaysDefault, "id": "AvDayOpento", "aria-describedby": "help_AvDayOpenfromto" }}
{...{ onChange }}
/>
Expand Down

0 comments on commit 694194b

Please sign in to comment.