Skip to content

Commit a1b485e

Browse files
committed
1 parent e7e7eb0 commit a1b485e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/format.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ export const formatOpenPositions = (job, resources) => {
299299
* @returns {string} formatted string
300300
*/
301301
export const formatJobDate = (startDate, duration) => {
302-
const dateStr = startDate ? startDate : "";
302+
const dateStr = startDate ? moment(startDate).format(DAY_FORMAT) : "";
303303

304304
if (startDate && duration) {
305305
return `Requested starting ${dateStr} for ${formatPlural(

0 commit comments

Comments
 (0)