diff --git a/autotag/src/AutoTagHeaderRowTokenCell.jsx b/autotag/src/AutoTagHeaderRowTokenCell.jsx index 32dcbf3..3af8387 100644 --- a/autotag/src/AutoTagHeaderRowTokenCell.jsx +++ b/autotag/src/AutoTagHeaderRowTokenCell.jsx @@ -55,6 +55,10 @@ export default class AutoTagHeaderRowTokenCell extends React.Component { dropDownClassname += " tagInactive"; } + if (token.possible.size > 0) { + tagValue += '\u00a0(' + token.possible.size + ')'; + } + let className = '' + token.type + 'Tokens'; let tooltipID = 'tooltip-token-' + token.value; @@ -78,7 +82,7 @@ export default class AutoTagHeaderRowTokenCell extends React.Component {