Skip to content

Commit

Permalink
fix: saving correct full title to clipboard (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
rostik404 authored Aug 3, 2018
1 parent 961fbba commit 8bf5873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/static/components/section/title/simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SectionTitle extends Component {
onClick={(e) => e.stopPropagation()}
className="button section__icon section__icon_copy-to-clipboard"
title="copy to clipboard"
data-clipboard-text={this.props.suite.suitePath}>
data-clipboard-text={this.props.suite.suitePath.join(' ')}>
</ClipboardButton>
);
}
Expand Down

0 comments on commit 8bf5873

Please sign in to comment.