jetztgradnet / grails-spy-plugin

Spy into Grails internals

Home Page:http://blog.jetztgrad.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bean Details are getting truncated due to width constraints.

thiles opened this issue · comments

Possible fix:

Change beans.css (line 21)

From:
div#beanDetails {
float:left;
left:16em;
overflow:scroll;
width:700px;
}

to:
div#beanDetails {
float:left;
left:16em;
overflow:scroll;
width:100%;
}

Thanks, will change CSS according to your suggestion.