Skip to content

Commit

Permalink
fix: removed no_value option from recurrence widget (#827)
Browse files Browse the repository at this point in the history
* fix: removed no_value option from recurrence widget

* chore: removed space

---------

Co-authored-by: Piero Nicolli <[email protected]>
  • Loading branch information
sabrina-bongiovanni and pnicolli authored Dec 19, 2024
1 parent bfc673d commit 0581d8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@

### Fix

- Rimossa l'opzione non selezionabile "nessun valore" dal widget ricorrenza.
- La pagina non dà più errore quando si imposta una ricorrenza con impostazione "Termina dopo tot. ricorrenze".

## Versione 11.25.3 (12/12/2024)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,7 @@ class RecurrenceWidget extends Component {
)}
value={formValues.freq}
onChange={this.onChangeRule}
noValueOption={false}
/>
{OPTIONS.frequences[formValues.freq].interval && (
<IntervalField
Expand All @@ -1004,7 +1005,6 @@ class RecurrenceWidget extends Component {
onChange={this.onChangeRule}
/>
)}

{/***** byday *****/}
{OPTIONS.frequences[formValues.freq].byday && (
<ByDayField
Expand All @@ -1013,7 +1013,6 @@ class RecurrenceWidget extends Component {
onChange={this.onChangeRule}
/>
)}

{/***** bymonth *****/}
{OPTIONS.frequences[formValues.freq].bymonth && (
<ByMonthField
Expand All @@ -1027,7 +1026,6 @@ class RecurrenceWidget extends Component {
onChange={this.onChangeRule}
/>
)}

{/***** byyear *****/}
{OPTIONS.frequences[formValues.freq].byyear && (
<ByYearField
Expand All @@ -1042,7 +1040,6 @@ class RecurrenceWidget extends Component {
onChange={this.onChangeRule}
/>
)}

{/*-- ends after N recurrence or date --*/}
<EndField
value={formValues.recurrenceEnds}
Expand Down

0 comments on commit 0581d8b

Please sign in to comment.