From 55c93a65cf6db7e6daa85896ba3eee9cb32212bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Rawicki?= Date: Thu, 4 Jan 2024 08:24:23 +0100 Subject: [PATCH] Fix: Issue #14472: Dropdown - the wrong field has been marked as deprecated --- src/app/components/dropdown/dropdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index 7e9c082e1e3..1bed68f38c2 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -474,12 +474,12 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV @Input() optionGroupChildren: string = 'items'; /** * Whether to display the first item as the label if no placeholder is defined and value is null. + * @deprecated since v17.3.0, set initial value by model instead. * @group Props */ @Input() autoDisplayFirst: boolean = true; /** * Whether to display options as grouped when nested options are provided. - * @deprecated since v17.3.0, set initial value by model instead. * @group Props */ @Input() group: boolean | undefined;