Skip to content

Commit

Permalink
Add glitches to summary table
Browse files Browse the repository at this point in the history
  • Loading branch information
thdfw committed Jan 31, 2025
1 parent 4bd3b53 commit ce98ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visualizer_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def get_requested_messages(request: MessagesRequest, running_locally:bool=False)

for message in sorted_glitches:
sources.append(message.payload['FromGNodeAlias'])
pb_types.append(message.payload['Type'])
pb_types.append(str(message.payload['Type']).lower())
summaries.append(message.payload['Summary'])
details.append(message.payload['Details'].replace('<','').replace('>','').replace('\n','<br>'))
times_created.append(str(pendulum.from_timestamp(message.payload['CreatedMs']/1000, tz='America/New_York').replace(microsecond=0)))
Expand Down

0 comments on commit ce98ab4

Please sign in to comment.