Skip to content

Commit 12e6417

Browse files
feedback: remind customer not to share personal info #3296
Fixes IDE-10356 Signed-off-by: Nikolas Komonen <[email protected]>
1 parent 7c4c6b6 commit 12e6417

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

src/feedback/vue/submitFeedback.vue

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@
2626
<div>
2727
<div>
2828
<div style="margin-bottom: 10px">
29-
<div
30-
style="float: right; font-size: smaller"
31-
id="remaining"
32-
:class="comment.length > 2000 ? 'exceeds-max-length' : ''"
33-
>
34-
{{ 2000 - comment.length }} characters remaining
35-
</div>
3629
<div>
3730
<em
3831
>Feedback is <b>anonymous</b>. If you need a reply,
@@ -41,6 +34,20 @@
4134
>.</em
4235
>
4336
</div>
37+
<br />
38+
<div>
39+
<em>
40+
Don't add personally identifiable information (PII), confidential or sensitive information
41+
in your feedback. Please remove any PII when sharing file paths, error messages, etc.
42+
</em>
43+
<div
44+
style="float: right; font-size: smaller"
45+
id="remaining"
46+
:class="comment.length > 2000 ? 'exceeds-max-length' : ''"
47+
>
48+
{{ 2000 - comment.length }} characters remaining
49+
</div>
50+
</div>
4451
</div>
4552
</div>
4653
<textarea style="width: 100%; margin-bottom: 10px" rows="10" cols="90" v-model="comment"></textarea>

0 commit comments

Comments
 (0)