diff --git a/allure-generator/src/main/javascript/components/tree/TreeView.hbs b/allure-generator/src/main/javascript/components/tree/TreeView.hbs
index 579373444..09a81a566 100644
--- a/allure-generator/src/main/javascript/components/tree/TreeView.hbs
+++ b/allure-generator/src/main/javascript/components/tree/TreeView.hbs
@@ -21,7 +21,7 @@
{{#if items}}
{{#each items}}
- {{> tree-group baseUrl=../baseUrl showGroupInfo=../showGroupInfo tabName=../tabName}}
+ {{~> tree-group baseUrl=../baseUrl showGroupInfo=../showGroupInfo tabName=../tabName}}
{{/each}}
{{else}}
{{t 'component.tree.empty'}}
diff --git a/allure-generator/src/main/javascript/components/tree/styles.css b/allure-generator/src/main/javascript/components/tree/styles.css
index 632dfbc81..5894333a8 100644
--- a/allure-generator/src/main/javascript/components/tree/styles.css
+++ b/allure-generator/src/main/javascript/components/tree/styles.css
@@ -22,13 +22,16 @@
position: absolute;
}
&__stats {
+ display: block;
float: right;
+ white-space: nowrap;
}
&__title {
overflow: hidden;
line-height: 1.2em;
padding: 7px $gap-size 7px 25px;
flex: 1;
+ display: flex;
cursor: pointer;
border-top: 1px solid #ECEFF1;
position: relative;
@@ -55,7 +58,13 @@
&__time {
padding: 5px;
}
-
+ &__parameters {
+ color: $text-muted-color;
+ min-width: 2ch;
+ &_separator:last-child {
+ display: none;
+ }
+ }
&__children {
display: none;
.node__expanded > & {
diff --git a/allure-generator/src/main/javascript/components/tree/tree-group.hbs b/allure-generator/src/main/javascript/components/tree/tree-group.hbs
index f16166346..f8ba7f1ec 100644
--- a/allure-generator/src/main/javascript/components/tree/tree-group.hbs
+++ b/allure-generator/src/main/javascript/components/tree/tree-group.hbs
@@ -7,6 +7,7 @@
{{else}}
{{t 'component.tree.unknown'}}
{{/if}}
+
 
{{statistic-bar statistic tabName}}
@@ -23,10 +24,10 @@
{{/if}}
{{#each children}}
- {{> tree-group baseUrl=../baseUrl showGroupInfo=../showGroupInfo tabName=../tabName}}
+ {{~> tree-group baseUrl=../baseUrl showGroupInfo=../showGroupInfo tabName=../tabName}}
{{/each}}
{{else}}
- {{> tree-leaf baseUrl=baseUrl}}
+ {{~> tree-leaf baseUrl=baseUrl}}
{{/if}}
diff --git a/allure-generator/src/main/javascript/components/tree/tree-leaf.hbs b/allure-generator/src/main/javascript/components/tree/tree-leaf.hbs
index 47ea73b9b..fb83e999f 100644
--- a/allure-generator/src/main/javascript/components/tree/tree-leaf.hbs
+++ b/allure-generator/src/main/javascript/components/tree/tree-leaf.hbs
@@ -1,14 +1,31 @@