Browse Source

FIX | Ips list

pull/11/head
Vitalik 9 months ago
parent
commit
3b50acd707
  1. 4
      src/containers/Ips/configs/columns.config.tsx

4
src/containers/Ips/configs/columns.config.tsx

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
import { voidColumn } from "@/components/TableGrid/configs";
import _ from "lodash";
import _, { defaultTo } from "lodash";
import moment from "moment";
export const columnsConfig: any = [
@ -25,7 +25,7 @@ export const columnsConfig: any = [ @@ -25,7 +25,7 @@ export const columnsConfig: any = [
filter: false,
formatter: ({ row }) => {
if (_.isEmpty(row)) return null;
return row.fingreprint;
return defaultTo(row.fingreprint, "");
},
},
{

Loading…
Cancel
Save