Merge branch 'release/2024-01-26' into feature/IO-1828-Front-End-Package-Updates

# Conflicts:
#	client/src/pages/jobs-detail/jobs-detail.page.component.jsx
#	package-lock.json
#	package.json
This commit is contained in:
Dave Richer
2024-01-26 16:28:18 -05:00
56 changed files with 51532 additions and 2645 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
? dayjs(props.children).format(props.format ? props.format : "hh:mm a")