Explorar el Código

fix(fileexport): tslint fix

bergquist hace 10 años
padre
commit
08f02397b6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      public/app/core/utils/file_export.ts

+ 1 - 1
public/app/core/utils/file_export.ts

@@ -34,4 +34,4 @@ export function exportTableDataToCsv(table) {
 export function saveSaveBlob(payload, fname) {
     var blob = new Blob([payload], { type: "text/csv;charset=utf-8" });
     window.saveAs(blob, fname);
-};
+};