From cb815f3c8efe9c648f199eb5dd9ffeabcbbcda06 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Fri, 23 Mar 2018 19:15:47 +0300 Subject: [PATCH] Render safe HTML by default in tables to remain backward compatible. --- client/app/visualizations/table/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/visualizations/table/index.js b/client/app/visualizations/table/index.js index 60cf411c5..c8992357f 100644 --- a/client/app/visualizations/table/index.js +++ b/client/app/visualizations/table/index.js @@ -47,7 +47,7 @@ function getDefaultColumnsOptions(columns) { allowSearch: false, alignContent: getColumnContentAlignment(col.type), // `string` cell options - allowHTML: false, + allowHTML: true, highlightLinks: false, })); }