Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Feb 6, 2024
1 parent 7073d66 commit 5771999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/data_query/static/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function mysqlGetDataList(p){
for (var j = 0; j < fields.length; j++) {
var f = fields[j];
if (f in dlist[i]) {
tbody += '<td style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">'+dlist[i][f]+'</td>';
tbody += '<td style="word-wrap:break-word;word-break:break-all;">'+dlist[i][f]+'</td>';
} else {
tbody += '<td>undefined</td>';
}
Expand Down

0 comments on commit 5771999

Please sign in to comment.