From 118dd9cde864088b45d1d42fc5618688754aea20 Mon Sep 17 00:00:00 2001 From: cdg191 <56308700+cdg191@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:13:48 -0600 Subject: [PATCH] HasChildren is bool, not string The 'PanelBar Item Features' section incorrectly lists HasChildren as being a string, yet the examples show it as bool. --- components/panelbar/data-binding/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/panelbar/data-binding/overview.md b/components/panelbar/data-binding/overview.md index 9f5fb58917..226c346a13 100644 --- a/components/panelbar/data-binding/overview.md +++ b/components/panelbar/data-binding/overview.md @@ -32,7 +32,7 @@ The PanelBar items provide the following features that you control through the c * `ParentId` - `string` - identifies the parent to whom the item belongs. Required only when binding to flat data. All items with the same `ParentId` will be rendered at the same level. For a root level item, this must be `null`. -* `HasChildren` - `string` - whether the item has children. Determines whether an expand arrow is rendered next to the item. Required for binding to flat data. With hierarchical data, the PanelBar will render the icon based on the existence of child items, but `HasChildren` will take precedence. +* `HasChildren` - `bool` - whether the item has children. Determines whether an expand arrow is rendered next to the item. Required for binding to flat data. With hierarchical data, the PanelBar will render the icon based on the existence of child items, but `HasChildren` will take precedence. * `Items` - `string` - the collection of child items that will be rendered under the current item. Required only when binding to hierarchical data.