🔒 Suppressing personal data
info
This page is only relevant for the Ionic web platform.
We take data privacy really seriously. This is why we added the ability to exclude specific form data from screenshots & replays.
Simply add the attribute gleap-ignore="value"
to all input elements you want to exclude the values from. Once the attribute is added, the Gleap SDK will ignore the values from this specific element.
We also support hiding complete element groups by adding .gleap-hidden
to their class name list.
Example​
Secure input example​
<input name="secret" type="text" gleap-ignore="value" />
Hide a DOM element​
<div class="test">
<div class="left">
Welcome :)
</div>
<div class="right gleap-hidden">
This text is sensitive!
</div>
</div>
info
In addition, Gleap will automatically black out all input values for inputs of type "password" by default.