We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
As far as I can tell it's possible but you need to modify the directive itself.
I needed to add a count next to the label so I modified abn_tree_directive and the template like so:
abn_tree_directive
...<span class=\"indented tree-label\">{{ row.label }} </span><span class='count'>{{ row.count }}</span></a>...
And modified the scope.tree_rows call to include the count as well:
scope.tree_rows.push({ level: level, branch: branch, label: branch.label, count: branch.count, classes: branch.classes, tree_icon: tree_icon, visible: visible });
Not ideal, but is a quick way to get it working.
Sorry, something went wrong.
@chriscohoat you should PR that. It's just what I wanted! Thanks!
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: