79270003

Date: 2024-12-10 22:42:51
Score: 1
Natty:
Report link

Error cause by typo

You have an error typo that's why the output is always undefined, change your function valueBeforeEdit = event.oldvalue to oldValue.

From this:

const valueBeforeEdit = event.oldvalue;

To this:

const valueBeforeEdit = event.oldValue;

You can read more about simple triggers and installable triggers on this link - Event Objects.

Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lime Husky