Merge branch 'feature/IO-1532-Tracking-Department-Cycle-Times' into release/2024-01-26

This commit is contained in:
Dave Richer
2024-01-26 16:14:01 -05:00
54 changed files with 50393 additions and 1906 deletions

View File

@@ -17,6 +17,9 @@ export function DateTimeFormatter(props) {
)
: null;
}
export function DateTimeFormatterFunction(date) {
return moment(date).format("MM/DD/YYYY hh:mm a");
}
export function TimeFormatter(props) {
return props.children
? moment(props.children).format(props.format ? props.format : "hh:mm a")