From ddb1d0c684f46332ddf07ae3cda62656df5c094e Mon Sep 17 00:00:00 2001 From: bergquist Date: Tue, 9 Feb 2016 10:57:32 +0100 Subject: [PATCH] fix(table): escape / chars as well --- public/app/plugins/panel/table/renderer.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/plugins/panel/table/renderer.ts b/public/app/plugins/panel/table/renderer.ts index 2a022d578c9..68cb594ab5e 100644 --- a/public/app/plugins/panel/table/renderer.ts +++ b/public/app/plugins/panel/table/renderer.ts @@ -149,7 +149,8 @@ export class TableRenderer { '<': '<', '>': '>', '"': '"', - '\'': ''' + '\'': ''', + '/': '/' })[m]; }); }