diff --git a/src/components/Navigation/index.jsx b/src/components/Navigation/index.jsx index 4f852a3b..957a2c38 100644 --- a/src/components/Navigation/index.jsx +++ b/src/components/Navigation/index.jsx @@ -1389,6 +1389,8 @@ class Navigation extends Component { + { isCar && Utils.formatSearchName(searchSelect) } + {', '} { Utils.formatSearchDetails(searchSelect) } diff --git a/src/utils/index.js b/src/utils/index.js index 331092ef..d529a1fa 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -50,7 +50,7 @@ export function formatDriveDuration(duration) { export function timeFromNow(ts) { const dt = (Date.now() - ts) / 1000; if (dt > 3600 * 24 * 30) { - return dayjs(ts).format('MMM Do YYYY'); + return dayjs(ts).format('MMM D YYYY'); } else if (dt > 60) { return dayjs(ts).fromNow(); } else {