return empty val for missing software install date
This commit is contained in:
parent
6978890e6a
commit
2a0b605e92
|
@ -87,6 +87,9 @@ export default {
|
|||
label: "Installed On",
|
||||
field: "install_date",
|
||||
sortable: false,
|
||||
format: (val, row) => {
|
||||
return val === "01/01/1" ? "" : val;
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "size",
|
||||
|
|
Loading…
Reference in New Issue