Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WFNEWS-2499 text changes for Wildfire Of Note definition #2148

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -281,15 +281,15 @@
</div>
<div class="identify-card-item">
<img alt="icon" class="preview-icon" src="/assets/images/svg-icons/carbon_ruler.svg" class="incident-icon">
{{ identifyIncident.incidentSizeEstimatedHa }} {{ identifyIncident.incidentSizeEstimatedHa == 1 ? 'Hectare' : 'Hectares' }}
{{ identifyIncident.incidentSizeEstimatedHa }} {{ identifyIncident.incidentSizeEstimatedHa === 1 ? 'Hectare' : 'Hectares' }}
</div>
<div class="identify-card-item">
<img alt="icon" class="incident-icon" src="/assets/images/svg-icons/calendar.svg">
Discovered on {{convertToDateYear(identifyIncident.discoveryDate)}}
</div>
<div class="description-section">
<div class="identify-card-description" style="padding:0;" *ngIf="identifyItem.layerId === 'active-wildfires-fire-of-note'">
This wildfire is highly visible or poses a potential threat to public safety.
An incident that is creating an increased level of interest. We use this designation to make it easier to find and access response information on the wildfire map.
</div>
<div class="identify-card-description">
{{getStageOfControlDescription(identifyIncident.stageOfControlCode)}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Wildfire of Note
</mat-panel-title>
</mat-expansion-panel-header>
<p class="legend-accordion-content">A wildfire that is highly visible or poses a potential threat to public safety.</p>
<p class="legend-accordion-content">An incident that is creating an increased level of interest. We use this designation to make it easier to find and access response information on the wildfire map.</p>
</mat-expansion-panel>
<mat-expansion-panel *ngIf="checkLayerVisible('active-wildfires-out-of-control')" class="legend-accordion">
<mat-expansion-panel-header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="description-section">
<div class="identify-card-description"
*ngIf="data.layerId === 'active-wildfires-fire-of-note'">
A wildfire that is highly visible or poses a potential threat to public safety.
An incident that is creating an increased level of interest. We use this designation to make it easier to find and access response information on the wildfire map.
</div>
<div class="identify-card-description">
{{getStageOfControlDescription(incident.stageOfControlCode)}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>Stage of Control</h1>
</div>
</div>
<div class="sub-content">
This wildfire is highly visible or poses a potential threat to public safety.
This incident is creating an increased level of interest.
</div>
</div>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Wildfire of Note
</div>
<div class="content-list">
<span class="content-text">This wildfire is highly visible or poses a potential threat to public safety.</span>
<span class="content-text">This incident is creating an increased level of interest.</span>
</div>
</div>

Expand Down
Loading