Merge branch 'master' into 14565-admin-managing-user
[arvados-workbench2.git] / src / common / formatters.ts
index 5383c66e949f59ee1b2d1258f0d2d1402f485bdb..60e6cd59c53e284a929cd6143c618020537ffd3a 100644 (file)
@@ -4,13 +4,13 @@
 
 import { PropertyValue } from "~/models/search-bar";
 
-export const formatDate = (isoDate?: string) => {
+export const formatDate = (isoDate?: string | null) => {
     if (isoDate) {
         const date = new Date(isoDate);
         const text = date.toLocaleString();
-        return text === 'Invalid Date' ? "" : text;
+        return text === 'Invalid Date' ? "(none)" : text;
     }
-    return "";
+    return "(none)";
 };
 
 export const formatFileSize = (size?: number) => {