Skip to content

Commit

Permalink
refactor: add time graph to parcel
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Oct 30, 2024
1 parent 619969a commit 45b2ae7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/src/components/Search/DetailedSearchResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,7 @@ function SingleParcel(props) {
{`Properties owned by ${capitalizeFirstLetter(own_id)}`}
</span>
</Link>
{/* TODO: what is this? */}
{praxisRecordYears
? praxisRecordYears.map((year, index) => {
return (
Expand All @@ -714,6 +715,8 @@ function SingleParcel(props) {
})
: null}
</div>
{/* TODO: Integrate this better */}
<TimeGraph ownid={own_id} />
</div>
</div>
)
Expand Down

0 comments on commit 45b2ae7

Please sign in to comment.