From 07710992bbd62621b0aa1104b610f7d64e46ebba Mon Sep 17 00:00:00 2001 From: ahn5nc Date: Tue, 20 Jan 2026 13:11:00 -0500 Subject: [PATCH 1/2] fixed sort on BESS data --- database/templates/database/battery_storage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/templates/database/battery_storage.html b/database/templates/database/battery_storage.html index 4472acd..8057562 100644 --- a/database/templates/database/battery_storage.html +++ b/database/templates/database/battery_storage.html @@ -166,7 +166,7 @@

Explore Battery Storage Projects

in Virginia { width: '150px', targets: 3 }, { width: '200px', type:'num', targets: 4 }, { width: '200px', targets: 5 }, - { width: '250px', type: 'num', targets: 6 }, + { width: '250px', type: 'string', targets: 6 }, { width: '300px', targets: 7 }, ] }); From fa8b534ffaf9f8494da89cf257ac0808f06a700e Mon Sep 17 00:00:00 2001 From: EmilyLien Date: Thu, 22 Jan 2026 15:28:40 -0500 Subject: [PATCH 2/2] data ID parsing fix --- database/templates/database/solar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/templates/database/solar.html b/database/templates/database/solar.html index d7223b7..1e59845 100644 --- a/database/templates/database/solar.html +++ b/database/templates/database/solar.html @@ -213,7 +213,7 @@

Explore Solar Projects

in Virginia $('#projectData tbody').on('click', 'tr', function () { var data = table.row(this).data(); var data_id = data[8] - window.location.href = '/project/' + parseInt(data_id) + '/'; + window.location.href = '/project/' + data_id + '/'; }); });