Skip to content

Commit

Permalink
Resize textareas on report page
Browse files Browse the repository at this point in the history
  • Loading branch information
ssl committed May 12, 2021
1 parent 2815fbc commit 33f62db
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions templates/report.html
Expand Up @@ -55,19 +55,22 @@ <h3 class="m-b-xs">View report</h3>
<tr>
<td>Local Storage</td>
<td style="padding-right:0px"><textarea spellcheck=false
style="resize:vertical">{{report[localstorage]}}</textarea>
style="resize:vertical"
class="form-control" rows="7.5">{{report[localstorage]}}</textarea>
</td>
</tr>
<tr>
<td>Session Storage</td>
<td style="padding-right:0px"><textarea spellcheck=false
style="resize:vertical">{{report[sessionstorage]}}</textarea>
style="resize:vertical"
class="form-control" rows="7.5">{{report[sessionstorage]}}</textarea>
</td>
</tr>
<tr>
<td>DOM</td>
<td style="padding-right:0px"><textarea spellcheck=false
style="resize:vertical">{{report[dom]}}</textarea>
style="resize:vertical"
class="form-control" rows="12.5">{{report[dom]}}</textarea>
</td>
</tr>
<tr>
Expand Down

0 comments on commit 33f62db

Please sign in to comment.