Commit d9ad2e14 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

WebUI component:

- corrected retrieval of topologies
parent 564e686d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ def home():
        context_uuid : str = context_.context_id.context_uuid.uuid
        context_name : str = context_.name
        topologies : TopologyList = context_client.ListTopologies(context_.context_id)
        for topology_ in topologies.topology_ids:
        for topology_ in topologies.topologies:
            topology_uuid : str = topology_.topology_id.topology_uuid.uuid
            topology_name : str = topology_.name
            raw_values = context_uuid, context_name, topology_uuid, topology_name