We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The table that shows metrics in HTML report cannot scroll horizontally, so when displaying too many metrics one cannot see some of them.
To Reproduce
wily build
wily report -n 135 --format HTML src\wily\commands\report.py
Expected behavior The table should be wide enough or allow scrolling so all metrics can be seen.
Desktop
I have a simple fix that makes the table scrollable, but not sure it's the right way to go about this:
To achieve this one needs to change overflow: hidden; to overflow: scroll; in
overflow: hidden;
overflow: scroll;
wily/src/wily/templates/css/main.css
Line 72 in 72c4bb8
I can submit the trivial PR if this is desirable.
The text was updated successfully, but these errors were encountered:
Fixed in #208.
Sorry, something went wrong.
devdanzin
No branches or pull requests
The table that shows metrics in HTML report cannot scroll horizontally, so when displaying too many metrics one cannot see some of them.
To Reproduce
wily build
wily report -n 135 --format HTML src\wily\commands\report.py
Expected behavior
The table should be wide enough or allow scrolling so all metrics can be seen.
Desktop
I have a simple fix that makes the table scrollable, but not sure it's the right way to go about this:
To achieve this one needs to change
overflow: hidden;
tooverflow: scroll;
inwily/src/wily/templates/css/main.css
Line 72 in 72c4bb8
I can submit the trivial PR if this is desirable.
The text was updated successfully, but these errors were encountered: