Skip to content

Commit

Permalink
Merge pull request #73 from tilak-io/56-git-hash-is-missing-from-the-…
Browse files Browse the repository at this point in the history
…info-view

add ulg version info to addition infos
  • Loading branch information
HmZyy authored Aug 10, 2023
2 parents 71619b3 + 620a546 commit fec0cbc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/parsers/ulgparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ def setAdditionalInfo(self):
parameters_dict = [{"index": idx, "name": name, "value": value} for idx, (name, value) in enumerate(self.ulg.initial_parameters.items())]
self.additionalInfo.append({"name": "Initial Parameters", "info": parameters_dict, "search": True})

version_info = [{"name": key, "value": value} for key, value in self.ulg.msg_info_dict.items()]
self.additionalInfo.append({"name": "Version", "info": version_info, "search": False})

def initDefaultEntity(self):
self.default_entity = CesiumEntity(name='ulg default entity',
color="#ffffff",
Expand Down

0 comments on commit fec0cbc

Please sign in to comment.