Skip to content

Commit bd096c4

Browse files
committed
Fix html view issue
1 parent 993540e commit bd096c4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Creates awesome HTML (dashboard view) report by parsing robotframework output.xm
1111
---
1212
- __Sample Report__ [link](https://robotmetrics.netlify.com/)
1313

14-
- Whats new in __v3.1.9__ [link](https://github.com/adiralashiva8/robotframework-metrics/releases/tag/v3.1.9)
14+
- Whats new in __v3.2.0__ [link](https://github.com/adiralashiva8/robotframework-metrics/releases/tag/v3.2.0)
1515

1616
- Source Code used to parse output.xml in metrics report [link](https://adiralashivaprasad.blogspot.com/2019/01/how-to-get-suite-test-and-keyword.html)
1717

@@ -33,7 +33,7 @@ __Step 1__ Install robotmetrics
3333

3434
> Case 1: Using pip
3535
```
36-
pip install robotframework-metrics==3.1.9
36+
pip install robotframework-metrics==3.2.0
3737
```
3838
> Case 2: Using setup.py (clone project and run command within root)
3939
```

robotframework_metrics/robotmetrics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ def generate_report(opts):
851851
"order": [[ Number(sortCol), "desc" ]],
852852
dom: 'l<".margin" B>frtip',
853853
"aoColumnDefs": [ {
854-
"aTargets": [ -1 ],
854+
"aTargets": [ -1, -2 ],
855855
"mRender": function ( data, type, full ) {
856856
return $("<div/>").html(data).text();
857857
}

robotframework_metrics/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.1.9"
1+
__version__ = "3.2.0"

0 commit comments

Comments
 (0)