Skip to content

Commit

Permalink
fix version summary module, in the summary now it shows correct CA ve…
Browse files Browse the repository at this point in the history
…rsion in operator part (#654)

* fix version summary module
---------
Signed-off-by: Devansh Purani <[email protected]>
  • Loading branch information
devanshpurani7 authored Mar 7, 2024
1 parent ef5c4eb commit e36801d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ You can use the following steps to provision a network using Fabric test-network
* jq
* docker
* docker-compose (V2)
* Node.js v18 or higher
* _[WSL2](https://docs.microsoft.com/en-us/windows/wsl/install-win10) (Windows only)_

## Setup
Expand Down
2 changes: 1 addition & 1 deletion packages/athena/libs/other_apis_lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ module.exports = function (logger, ev, t) {
const fab_type = types[i];
if (tmp && tmp[fab_type]) {
ret.operator.available_fabric_versions[fab_type] = [];
for (let ver in tmp.peer) {
for (let ver in tmp[fab_type]) {
ret.operator.available_fabric_versions[fab_type].push(t.misc.prettyPrintVersion(ver));
}
}
Expand Down

0 comments on commit e36801d

Please sign in to comment.