diff --git a/src/renderer/components/badge/badge.tsx b/src/renderer/components/badge/badge.tsx index b51746a871..eca3c94063 100644 --- a/src/renderer/components/badge/badge.tsx +++ b/src/renderer/components/badge/badge.tsx @@ -13,11 +13,18 @@ interface Props extends React.HTMLAttributes, TooltipDecoratorProps { export class Badge extends React.Component { render() { const { className, label, small, children, ...elemProps } = this.props; - return ( + return <> {label} {children} - ); + { /** + * This is a zero-width-space. It makes there be a word seperation + * between adjacent Badge's because 's are ignored for browers' + * word detection algorithmns use for determining the extent of the + * text to highlight on multi-click sequences. + */} + ​ + } }