Browse Source

docs update

pull/24105/head
erdemcaygor 9 months ago
parent
commit
ea01f19552
  1. 2
      docs/en/tutorials/todo/layered/index.md
  2. 2
      docs/en/tutorials/todo/single-layer/index.md

2
docs/en/tutorials/todo/layered/index.md

@ -827,7 +827,7 @@ Open the `/angular/src/app/home/home.component.html` file and replace its conten
<ul id="TodoList">
@for (todoItem of todoItems; track todoItem.id) {
<li>
<i class="fa fa-trash-o" (click)="delete(todoItem.id)"></i> {{ todoItem.text }}
<i class="fa fa-trash-o" (click)="delete(todoItem.id)"></i> {%{{{ todoItem.text }}}%}
</li>
}
</ul>

2
docs/en/tutorials/todo/single-layer/index.md

@ -793,7 +793,7 @@ Open the `/angular/src/app/home/home.component.html` file and replace its conten
<ul id="TodoList">
@for (todoItem of todoItems; track todoItem.id) {
<li>
<i class="fa fa-trash-o" (click)="delete(todoItem.id)"></i> {{ todoItem.text }}
<i class="fa fa-trash-o" (click)="delete(todoItem.id)"></i> {%{{{ todoItem.text }}}%}
</li>
}
</ul>

Loading…
Cancel
Save