Merge pull request #1239 from dottenbr/formatter_fix
formatter fix for '<table' recognition
This commit is contained in:
commit
20ffbd4dbb
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ frappe.form.formatters = {
|
|||
},
|
||||
Text: function(value) {
|
||||
if(value) {
|
||||
var tags = ["<p", "<div", "<br"];
|
||||
var tags = ["<p", "<div", "<br", "<table"];
|
||||
var match = false;
|
||||
|
||||
for(var i=0; i<tags.length; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue