1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Comment ability to have multy-line cells

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-08-26 16:47:43 +03:00
parent 46ae36eb52
commit 89bcd96a23

View File

@ -184,9 +184,10 @@ class NonInjectedPods extends React.Component<Dependencies> {
id: "name", id: "name",
header: "Name", header: "Name",
cell: info => ( cell: info => (
<span style={{ wordBreak: "break-word", whiteSpace: "normal" }}> // <span style={{ wordBreak: "break-word", whiteSpace: "normal" }}>
{info.getValue()} // {info.getValue()}
</span> // </span>
<span>{info.getValue()}</span>
), ),
size: 130, size: 130,
}), }),