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
formatter fix for '<table' recognition
version-14
Dominik
10 years ago
parent
6e6a469a09
commit
90c7e96552
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