copy_email_modal: Avoid unnecessary raw HTML description.

The context passed in web/src/stream_edit.ts
never contains any HTML formatted string for
the description, so it is safe to replace
`{{{` with `{{`.

Signed-off-by: apoorvapendse <apoorvavpendse@gmail.com>
This commit is contained in:
apoorvapendse
2025-07-19 17:13:32 +05:30
committed by Tim Abbott
parent a7664187df
commit 03f5242384

View File

@@ -14,7 +14,7 @@
<input class="tag-checkbox" id="{{ this.name }}" type="checkbox"/>
<span class="rendered-checkbox"></span>
</label>
<label class="inline" for="{{this.name}}">{{{this.description}}}</label>
<label class="inline" for="{{this.name}}">{{this.description}}</label>
</div>
{{/each}}
<hr />