Error monitoring tool for recording videos & screenshots of user sessions


Post by dimehb »

Is there a possibility to make the e-mail and message fields required? Our users seem to be pretty lazy when they submit an error.

Post by mats »

Not through the API I'm afraid. But you can get to the button iframe element and reach for the name field and add the 'required' attribute to it.
logger.feedbackButton.el.querySelector('[name=name]').setAttribute('required', true);

Post Reply