Procházet zdrojové kódy

fix(table): escape / chars as well

bergquist před 10 roky
rodič
revize
ddb1d0c684
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      public/app/plugins/panel/table/renderer.ts

+ 2 - 1
public/app/plugins/panel/table/renderer.ts

@@ -149,7 +149,8 @@ export class TableRenderer {
         '<': '&lt;',
         '>': '&gt;',
         '"': '&quot;',
-        '\'': '&#039;'
+        '\'': '&#039;',
+        '/': '&#x2F;'
       })[m];
     });
   }