forked from 0x2620/pandora
improve tooltip in logs dialog
This commit is contained in:
parent
039c4de8d5
commit
3ab705b8ad
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ pandora.ui.logsDialog = function() {
|
||||||
id: 'text',
|
id: 'text',
|
||||||
title: 'Text',
|
title: 'Text',
|
||||||
tooltip: function(data) {
|
tooltip: function(data) {
|
||||||
return data.text.replace(/\n/g, '<br/>');
|
return '<code>' + data.text.replace(/\n/g, '<br/>') + '</code>';
|
||||||
},
|
},
|
||||||
visible: true,
|
visible: true,
|
||||||
width: 640
|
width: 640
|
||||||
|
|
Loading…
Reference in a new issue