Skip to content

Commit 5592a1a

Browse files
committed
1198: Scheduling single event or multiple events times filed displaying wrong digits #1198
1 parent a000692 commit 5592a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/dropDownUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Role } from "../slices/aclSlice";
55
* this file contains functions, which are needed for the searchable drop-down selections
66
*/
77

8-
export const formatTimeForDropdown = (times: {index: number, value: string}[]) => {
8+
export const formatTimeForDropdown = (times: {index: string, value: string}[]) => {
99
return times.map(({index, value}) => ({ label: value, value: index }));
1010
};
1111

0 commit comments

Comments
 (0)