fix: Corriger la sélection de durée des répétitions dans le modal de quantités
This commit is contained in:
parent
7f09f3f42b
commit
f11790784b
1 changed files with 2 additions and 2 deletions
|
|
@ -453,7 +453,7 @@ export default function DatesQuantityModal({
|
|||
<label className="inline-flex items-center gap-2 text-sm cursor-pointer">
|
||||
<input
|
||||
type="radio"
|
||||
checked={repetitionDuration === "3"}
|
||||
checked={globalDuration === "3"}
|
||||
onChange={() => setGlobalDuration("3")}
|
||||
className="text-indigo-600"
|
||||
/>
|
||||
|
|
@ -462,7 +462,7 @@ export default function DatesQuantityModal({
|
|||
<label className="inline-flex items-center gap-2 text-sm cursor-pointer">
|
||||
<input
|
||||
type="radio"
|
||||
checked={repetitionDuration === "4"}
|
||||
checked={globalDuration === "4"}
|
||||
onChange={() => setGlobalDuration("4")}
|
||||
className="text-indigo-600"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue