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 }, ] }); 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 + '/'; }); });