Skip to content

Commit

Permalink
history table overflow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
srinijammula committed Oct 4, 2024
1 parent 4c884da commit d61ae09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/resources/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -580,3 +580,7 @@ a {
text-decoration: none!important;
}

.wrap-text{
white-space: normal;
word-break: break-word;
}
4 changes: 4 additions & 0 deletions src/main/resources/static/js/gw.history.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,10 @@ GW.history = {
columnDefs : [
{ type: 'time-date-sort',
targets: [1],
},
{
targets: [3],
className: 'wrap-text'
}
],
order: [[ 1, "desc" ]],
Expand Down

0 comments on commit d61ae09

Please sign in to comment.