Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/122' into develop
Browse files Browse the repository at this point in the history
Forward port #123
  • Loading branch information
weierophinney committed Aug 14, 2016
2 parents c131a5c + c965e57 commit fbad7df
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#123](https://github.com/zfcampus/zf-apigility-admin-ui/pull/123) fixes
display of the sidebar on initial load when a default API version other than
the latest version is selected; it now correctly *always* displays the latest
version on initial load.

## 1.3.6 - 2016-08-12

Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

<script src="apigility-ui/1bc54cd5.vendor.js" charset="utf-8"></script>

<script src="apigility-ui/ad34f6f7.apigility.js" charset="utf-8"></script>
<script src="apigility-ui/b84845a5.apigility.js" charset="utf-8"></script>

<script>
$(document).ready(function () {
Expand Down
4 changes: 2 additions & 2 deletions src/apigility-ui/sidebar/sidebar.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@
api.rest.forEach(function(service){
vm.services.push(service);
});
apiClient.getRestList(api.name, api.default_version, function(restList) {
apiClient.getRestList(api.name, api.selected_version, function(restList) {
api.rest = restList;
});
api.rpc.forEach(function(service){
vm.services.push(service);
});
apiClient.getRpcList(api.name, api.default_version, function(rpcList) {
apiClient.getRpcList(api.name, api.selected_version, function(rpcList) {
api.rpc = rpcList;
});
});
Expand Down

0 comments on commit fbad7df

Please sign in to comment.