mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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:
committed by
Tim Abbott
parent
a7664187df
commit
03f5242384
@@ -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 />
|
||||
|
Reference in New Issue
Block a user