Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv committed Oct 18, 2023
1 parent b2adf95 commit 91a28c7
Show file tree
Hide file tree
Showing 2 changed files with 2,238 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const fetchMeetings = (query, callback, isCSV, isKML) => {
const handleMeetingsData = (meetings) => {
if (isProcessingCSV) {
const csvContent = `data:text/csv;charset=utf-8,${encodeURIComponent(
convertToCSV(meetings),
convertToCSV(meetings)
)}`;
const downloadLink = document.getElementById("downloadLink");
downloadLink.href = csvContent;
Expand All @@ -21,7 +21,7 @@ const handleMeetingsData = (meetings) => {

if (isProcessingKML) {
const kmlContent = `data:text/xml;charset=utf-8,${encodeURIComponent(
convertToKML(meetings),
convertToKML(meetings)
)}`;
const kmlDownloadLink = document.getElementById("kmlDownloadLink");
kmlDownloadLink.href = kmlContent;
Expand Down
Loading

0 comments on commit 91a28c7

Please sign in to comment.