File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
frontend/src/components/ui Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export function Calendar(props: CalendarProps) {
1616 )
1717}
1818
19- export function CalendarPopover ( props : CalendarProps & { triggerLabel ?: string } ) {
19+ export function CalendarPopover ( props : CalendarProps & { triggerLabel ?: string ; selected ?: any } ) {
2020 const [ open , setOpen ] = React . useState ( false ) ;
2121 // Ferme le popover si une plage complète et différente est sélectionnée
2222 React . useEffect ( ( ) => {
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ export function CommandItem({
6767 ...props
6868} : Omit < React . ComponentProps < "div" > , "onSelect" > & {
6969 onSelect ?: ( value : string | undefined ) => void ;
70+ value ?: string ;
7071} ) {
7172 return (
7273 < div
You can’t perform that action at this time.
0 commit comments