Is there a way to display a list of strings without tracking changes? (I'm experiencing performance issues).
Fetching a list of languages from a REST API and then dynamically generating dropdowns for each language using *ngFor is causing the app to slow down when there are 10+ dropdowns (10 dropdowns * 200 languages = 2000 items to track).
The ideal solution would be to disable change tracking on the languages list since it will never be altered, but this process is not documented.
Code
Controller
langs: string[] = ['English', 'German', 'Spanish', ...];
View
<select ...>
<option *ngFor="lang of langs">{{lang}}</option>
</select>