Skip to content

Commit

Permalink
fixes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
rmroot committed Sep 30, 2024
1 parent 1bdf330 commit cc41a1c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/app/core-components/welcome/welcome.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
Setup Wizard</button>
</div>
<hr>
<div class="list-content">
<div>
<div class="card-title secondary">
<fa-icon [icon]="faFolderOpen"></fa-icon>
JUSTIFI Portfolio
Expand All @@ -57,7 +57,7 @@
</div>
</div>
<hr>
<div class="list-content">
<div>
<div class="card-title secondary">
<fa-icon [icon]="faStopwatch"></fa-icon>
Latest Modified On-Site Visits
Expand Down Expand Up @@ -123,7 +123,7 @@
Non-Energy Benefits Resources
</div>
<div class="d-flex flex-column">
<div class="list-content">
<div>
<!-- <a [href]="'https://www.nrel.gov/'" target="_blank">
<fa-icon [icon]="faExternalLink"></fa-icon>
NEBs Knowledge Library
Expand All @@ -136,13 +136,13 @@
<span class="badge bg-warning">Coming Soon</span>
A knowledge library of content associated to the study of non-energy
benefits
and the process around identifying them has been currated by NREL.
and the process around identifying them has been curated by NREL.
</p>
</div>
<div class="col-12">
<hr>
</div>
<div class="list-content">
<div>
<a>
<fa-icon [icon]="faQuestionCircle"></fa-icon>
JUSTIFI Help Content
Expand All @@ -156,7 +156,7 @@
<div class="col-12">
<hr>
</div>
<div class="list-content">
<div>
<a>
<fa-icon [icon]="faDatabase"></fa-icon>
NEBs Database
Expand Down
2 changes: 1 addition & 1 deletion src/app/core-components/welcome/welcome.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class WelcomeComponent {
goToVisit(visit: IdbOnSiteVisit) {
this.companyIdbService.setSelectedFromGUID(visit.companyId);
this.facilityIdbService.setSelectedFromGUID(visit.facilityId);
this.onSiteVisitIdbService.setSelectedFromAssessmentGUID(visit.assessmentIds[0]);
this.onSiteVisitIdbService.setSelectedFromGUID(visit.guid);
this.sharedDataService.createAssessmentModalOpen.next(true);
}
}

0 comments on commit cc41a1c

Please sign in to comment.