todo_widget: Replace obsolete <strike> element.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-09-05 16:47:19 -07:00
committed by Tim Abbott
parent ce43111b03
commit c23cd837a0
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ Last task`,
<span class="rendered-checkbox"></span>
</div>
<div>
<strike><strong>Task 1:</strong> This is the first task.</strike>
<s><strong>Task 1:</strong> This is the first task.</s>
</div>
</label>
</li>

View File

@@ -7,7 +7,7 @@
</div>
<div class="todo-task">
{{#if completed}}
<strike><strong>{{ task }}</strong>{{#if desc }}: {{ desc }}{{/if}}</strike>
<s><strong>{{ task }}</strong>{{#if desc }}: {{ desc }}{{/if}}</s>
{{else}}
<strong>{{ task }}</strong>{{#if desc }}: {{ desc }}{{/if}}
{{/if}}