buli
2023-07-10 4f200849487fc6f914e237d5af3ecefd6d802457
force-app/main/default/lwc/lexInventory/lexInventory.js
@@ -564,7 +564,8 @@
      });
      doc += '</table>';
      console.log('doc' + doc);
      var element = 'data:application/vnd.ms-excel,' + encodeURIComponent(doc);
      var bom = "\uFEFF";
      var element = 'data:application/vnd.ms-excel,' + encodeURIComponent(bom + doc);
      let downloadElement = document.createElement('a');
      downloadElement.href = element;
      downloadElement.target = '_self';