Kibana canvas json inside table

Hello, I am logging a variable as a json:

image

But when I use a query to show in a canvas table I lose the new line characters:

Is there a way to prevent that from happening?

HTML tables will preserve/render all the new lines and tabs in your JSON string if you apply the following CSS.

.canvasDataTable__table {
  white-space: pre-wrap;
}

wow amazing!!
Thanks so much!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.