Update view in report page when version changes

Currently, when the capability version changes, a function called update()
is called, but this function no longer exists and was renamed to updateCapabilities().
This patch renames the on-change function so that the view is updated when the version
changes on the report page.

Change-Id: Iaf49d2142580f6122263d38860b768f521bc7f22
This commit is contained in:
Paul Van Eck 2015-05-13 11:58:38 -07:00
parent 96558296aa
commit 0e6907312c
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<div class="row">
<div class="col-md-3">
<strong>Capabilities Version:</strong>
<select ng-model="version" ng-change="update()" class="form-control">
<select ng-model="version" ng-change="updateCapabilities()" class="form-control">
<option ng-repeat="versionFile in versionList" value="{{versionFile}}">{{versionFile.slice(0, -5)}}</option>
</select>
</div>