Skip to content

Commit 2df25b8

Browse files
fix prod 5
1 parent 1868610 commit 2df25b8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

frontend/src/components/ui/calendar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(() => {

frontend/src/components/ui/command.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)