Lexer Error When Clicking on Formatter

  • Select binding on page that already has a formatter applied to it
  • Click on the formatter icon

This is the code:

<p>{{varDate.datetime.formatDate("MMMM dd, yyyy - h:mm a")}}</p>

If I remove the formatDate(“MMMM dd, yyyy - h:mm a”) then no error is shown.

Use single quotes in the expression

<p>{{varDate.datetime.formatDate('MMMM dd, yyyy - h:mm a')}}</p>