From 00a996dd12f76fddfa491bf7809886658d1b7f68 Mon Sep 17 00:00:00 2001 From: idembele70 Date: Sat, 25 Oct 2025 21:05:54 +0200 Subject: [PATCH] docs: fix accessibility of @empty block message (cherry picked from commit 202fceed73826734a0712c064e02463ce52d1ec3) --- adev/src/content/guide/templates/control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/templates/control-flow.md b/adev/src/content/guide/templates/control-flow.md index c3196b5cedd..af085988254 100644 --- a/adev/src/content/guide/templates/control-flow.md +++ b/adev/src/content/guide/templates/control-flow.md @@ -93,7 +93,7 @@ You can optionally include an `@empty` section immediately after the `@for` bloc @for (item of items; track item.name) {
  • {{ item.name }}
  • } @empty { - +
  • There are no items.
  • } ```