From a2d98cc8d37812411bc86fa33fe308727d1e3a02 Mon Sep 17 00:00:00 2001 From: Ezequiel Cicala Date: Sun, 21 Sep 2025 15:00:49 -0300 Subject: [PATCH] docs: add missing `signal` function (#63974) The `buttonClasses` variable should be a signal according to the example, so we added the call. PR Close #63974 --- adev/src/content/guide/templates/binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/templates/binding.md b/adev/src/content/guide/templates/binding.md index d438b1aab47..cd7eb304b4e 100644 --- a/adev/src/content/guide/templates/binding.md +++ b/adev/src/content/guide/templates/binding.md @@ -151,7 +151,7 @@ You can also bind directly to the `class` property. Angular accepts three types export class UserProfile { listClasses = 'full-width outlined'; sectionClasses = signal(['expandable', 'elevated']); - buttonClasses = ({ + buttonClasses = signal({ highlighted: true, embiggened: false, });