Skip to content

Commit 33bd4e5

Browse files
authored
Fix CSV_URL to use the correct Google Sheets link
Updated CSV data source URL to the correct link provided by the user.
1 parent d002f2c commit 33bd4e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ <h3 class="text-lg font-semibold text-gray-700 mb-4">異味發生熱點時段 (2
144144

145145
<script>
146146
// 設定 CSV 資料來源 URL
147-
const CSV_URL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSU08cMkQD3qG0_wn4GxHH9Ebo8J3cyDB7oOk1GOjEVi55aB-2_Ks81gYKKoR86I4Ey2oGG-ZFF3JR/pub?output=csv';
147+
// 已更新為使用者提供的正確連結
148+
const CSV_URL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSU08cMkQD3qG0_wn4GxHH9Ebo8J3cyDB7oOk1GOjEVi55aB-2_Ks81gYKKoR86I4Ey2oGGX-ZFF3JR/pub?output=csv';
148149

149150
let rawData = []; // 儲存原始資料
150151
let filteredData = []; // 儲存篩選後的資料

0 commit comments

Comments
 (0)