Commented lines after ad-hoc metric definition cause error

coalesce(
count(table.field)
| where(table.field == ‘Something’)
// comments
, 0)

The above works fine. But putting the comments at the end causes an error:

coalesce(
count(table.field)
| where(table.field == ‘Something’)
, 0)
// comments

Hi @Alisha_Ritter ,

Apologies for the inconvenience. This issue is due to a bug on our end. We’re actively working on a fix and will update you as soon as it’s resolved.