Skip to content

Commit f54823e

Browse files
authored
Include TOPA notice date (#661)
1 parent aceb5bd commit f54823e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

docs/_includes/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<span class="icon-bar"></span>
1717
</button>
1818
<a class="navbar-brand" href="{{ site.baseurl }}/"
19-
>Housing Insights (Updated: 04/19/2024)</a
19+
>Housing Insights (Updated: 09/17/2024)</a
2020
>
2121
</div>
2222
<div id="navbar" class="navbar-collapse collapse">

docs/tool/js/views/project-view.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,9 @@ var projectView = {
571571
topaTable.append("No TOPA outcome recorded for this project");
572572
} else {
573573
const outcome = full_project_data.topa_outcomes[0];
574+
const topaNoticeDate = outcome.u_notice_date;
575+
console.log(outcome);
576+
d3.select("#topa-outcome-date").text(topaNoticeDate);
574577
const mapBooleanToString = (value) => {
575578
if (value) {
576579
return "Yes";

docs/tool/partials/project-view/topa-outcomes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<div id="topa-outcome-icon" class="col-sm-2"></div>
33

44
<div class="col-sm-10">
5+
<h3>TOPA Notice Date: <span id="topa-outcome-date"></span></h3>
56
<div id="topa-outcome-table" class="project-data-table"></div>
67
</div>
78
</div>

0 commit comments

Comments
 (0)