react-treebeard icon indicating copy to clipboard operation
react-treebeard copied to clipboard

[Request] Do not show polygon if no children are provided.

Open mindaugasnakrosis opened this issue 4 years ago • 0 comments

Do not show polygon of node:

image

If there are no children provided to the location (empty array).

Example data object:

export default {
    name: 'react-treebeard',
    id: 1,
    toggled: true,
    children: [
        {
            name: 'example',
            children: []
        },
    ]
};

mindaugasnakrosis avatar Aug 12 '20 14:08 mindaugasnakrosis