mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 10:42:38 +00:00
chore: add ph-no-capture css class to messages (#5932)
This ensure posthog replaces the corresponding elements with an empty block in recordings. ref: https://posthog.com/manual/recordings#ignoring-sensitive-elements
This commit is contained in:
@@ -35,7 +35,7 @@
|
|||||||
<message
|
<message
|
||||||
v-for="message in getReadMessages"
|
v-for="message in getReadMessages"
|
||||||
:key="message.id"
|
:key="message.id"
|
||||||
class="message--read"
|
class="message--read ph-no-capture"
|
||||||
:data="message"
|
:data="message"
|
||||||
:is-a-tweet="isATweet"
|
:is-a-tweet="isATweet"
|
||||||
:has-instagram-story="hasInstagramStory"
|
:has-instagram-story="hasInstagramStory"
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
<message
|
<message
|
||||||
v-for="message in getUnReadMessages"
|
v-for="message in getUnReadMessages"
|
||||||
:key="message.id"
|
:key="message.id"
|
||||||
class="message--unread"
|
class="message--unread ph-no-capture"
|
||||||
:data="message"
|
:data="message"
|
||||||
:is-a-tweet="isATweet"
|
:is-a-tweet="isATweet"
|
||||||
:has-instagram-story="hasInstagramStory"
|
:has-instagram-story="hasInstagramStory"
|
||||||
|
|||||||
Reference in New Issue
Block a user