From 8bf58738158222c23536802f53ff92297a88383e Mon Sep 17 00:00:00 2001 From: Rostislav Shtanko Date: Fri, 3 Aug 2018 12:40:49 +0200 Subject: [PATCH 1/2] fix: saving correct full title to clipboard (#137) --- lib/static/components/section/title/simple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/static/components/section/title/simple.js b/lib/static/components/section/title/simple.js index a88d672f1..13e944805 100644 --- a/lib/static/components/section/title/simple.js +++ b/lib/static/components/section/title/simple.js @@ -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(' ')}> ); } From b57112412a36170479e448cbb03a955915306e2a Mon Sep 17 00:00:00 2001 From: rostik404 Date: Fri, 3 Aug 2018 13:55:33 +0300 Subject: [PATCH 2/2] chore(release): 2.20.7 --- CHANGELOG.md | 10 ++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7028f228f..db5d1f225 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [2.20.7](https://github.com/gemini-testing/html-reporter/compare/v2.20.6...v2.20.7) (2018-08-03) + + +### Bug Fixes + +* saving correct full title to clipboard ([#137](https://github.com/gemini-testing/html-reporter/issues/137)) ([8bf5873](https://github.com/gemini-testing/html-reporter/commit/8bf5873)) + + + ## [2.20.6](https://github.com/gemini-testing/html-reporter/compare/v2.20.5...v2.20.6) (2018-08-01) diff --git a/package-lock.json b/package-lock.json index 728c11ea3..054f641ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "html-reporter", - "version": "2.20.6", + "version": "2.20.7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c5ca09daf..2b76992eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-reporter", - "version": "2.20.6", + "version": "2.20.7", "description": "Plugin for gemini and hermione which is intended to aggregate the results of tests running into html report", "scripts": { "lint": "eslint .",