Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created April 7, 2018 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingdotnet/8da313f505d84b741cc314bed22e8bca to your computer and use it in GitHub Desktop.
Save talkingdotnet/8da313f505d84b741cc314bed22e8bca to your computer and use it in GitHub Desktop.
<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