return empty val for missing software install date

This commit is contained in:
wh1te909 2021-03-01 08:21:56 +00:00
parent 6978890e6a
commit 2a0b605e92
1 changed files with 3 additions and 0 deletions

View File

@ -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",