This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#1239
from dottenbr/formatter_fix
formatter fix for '<table' recognition
version-14
Rushabh Mehta
10 years ago
parent
8d55cad71b
90c7e96552
commit
20ffbd4dbb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
frappe/public/js/frappe/form/formatters.js
+ 1
- 1
frappe/public/js/frappe/form/formatters.js
View File
@@ -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++) {
Write
Preview
Loading…
Cancel
Save