Created
April 7, 2018 10:03
-
-
Save talkingdotnet/8da313f505d84b741cc314bed22e8bca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<label>Summary: </label> | |
<select (change)="filterForeCasts($event.target.value)"> | |
<option value="0">--All--</option> | |
<option *ngFor="let summary of summaries" value={{summary}}> | |
{{summary}} | |
</option> | |
</select> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment