Skip to content

Commit

Permalink
Merge pull request #1848 from dslosky-usgs/groundfailure
Browse files Browse the repository at this point in the history
Remove area estimate from groundfailure bar
  • Loading branch information
jmfee-usgs authored Sep 21, 2020
2 parents 61ea26c + 86a3e36 commit 90b16d6
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/app/ground-failure/alert-bar/alert-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,6 @@
"
>
<path d="M0,0 L24,-34 L-24,-34 L0,0 Z" fill="black"></path>
<ng-container
*ngIf="
first
? { anchor: 'start', x: -20 }
: last
? { anchor: 'end', x: 20 }
: { anchor: 'middle', x: 0 };
let labelPosition
"
>
<text
fill="black"
[attr.text-anchor]="labelPosition.anchor"
[attr.x]="labelPosition.x"
y="-80"
>
<ng-container *ngIf="first && value <= bin.min; else: greaterThan">
&lt; {{ bin.min }} {{ units }}
</ng-container>
<ng-template #greaterThan>
{{ value | number }} {{ units }}
</ng-template>
</text>
</ng-container>
</svg:g>
</svg:g>
</svg>

0 comments on commit 90b16d6

Please sign in to comment.