Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions WebApp/handler/ComponentHistoryHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def web_getInstallationData(self):
if installation['UnInstalledBy']:
uninstalledBy = installation['UnInstalledBy']
values.append({'Name': installation['Instance'],
'Module': installation['Component']['Module'],
'Module': installation['Component']['DIRACModule'],
'Host': installation['Host']['HostName'],
'System': installation['Component']['System'],
'System': installation['Component']['DIRACSystem'],
'Type': installation['Component']['Type'],
'Installed': installation['InstallationTime'].strftime('%Y-%m-%d %H:%M'),
'Uninstalled': uninstalled,
Expand Down Expand Up @@ -77,8 +77,8 @@ def web_getSelectionData(self):
for installation in result['Value']:
data['name'].add(installation['Instance'])
data['host'].add(installation['Host']['HostName'])
data['module'].add(installation['Component']['Module'])
data['system'].add(installation['Component']['System'])
data['module'].add(installation['Component']['DIRACModule'])
data['system'].add(installation['Component']['DIRACSystem'])
data['type'].add(installation['Component']['Type'])

# Order and format the results
Expand Down