removed useless cell formatter (#30422)
fixes: #30306 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
parent
700b493aa3
commit
bdf6dff279
1 changed files with 1 additions and 2 deletions
|
@ -28,7 +28,7 @@ import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
} from "@patternfly/react-core";
|
} from "@patternfly/react-core";
|
||||||
import { CheckCircleIcon, WarningTriangleIcon } from "@patternfly/react-icons";
|
import { CheckCircleIcon, WarningTriangleIcon } from "@patternfly/react-icons";
|
||||||
import { cellWidth, expandable } from "@patternfly/react-table";
|
import { cellWidth } from "@patternfly/react-table";
|
||||||
import { pickBy } from "lodash-es";
|
import { pickBy } from "lodash-es";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Controller, FormProvider, useForm } from "react-hook-form";
|
import { Controller, FormProvider, useForm } from "react-hook-form";
|
||||||
|
@ -468,7 +468,6 @@ export default function EventsSection() {
|
||||||
{
|
{
|
||||||
name: "time",
|
name: "time",
|
||||||
displayKey: "time",
|
displayKey: "time",
|
||||||
cellFormatters: [expandable],
|
|
||||||
cellRenderer: (row) =>
|
cellRenderer: (row) =>
|
||||||
formatDate(new Date(row.time!), FORMAT_DATE_AND_TIME),
|
formatDate(new Date(row.time!), FORMAT_DATE_AND_TIME),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue