Structure Field Text Area markup not working - paragraphs not working

Hi there,

I’m using the following structure field on a page:

  texts: 
    label: Texts
    type: structure
    style: table
    fields: 
      textTitle:
        label: Text Title
        type: text
      text: 
        label: Text Copy
        type: textarea

The problem is that when there are two paragraphs in the textarea field, using
$item->text()->kirbyText()
the paragraphs are not registered and do not show up on the page.

Any suggestions if this could be modified?

Should be

$item->text()->kirbytext()

(with a lower case “t”)