We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7e7eb0 commit a1b485eCopy full SHA for a1b485e
src/utils/format.js
@@ -299,7 +299,7 @@ export const formatOpenPositions = (job, resources) => {
299
* @returns {string} formatted string
300
*/
301
export const formatJobDate = (startDate, duration) => {
302
- const dateStr = startDate ? startDate : "";
+ const dateStr = startDate ? moment(startDate).format(DAY_FORMAT) : "";
303
304
if (startDate && duration) {
305
return `Requested starting ${dateStr} for ${formatPlural(
0 commit comments