Skip to content

Commit

Permalink
Highlight client file node in ItemInteractionsPull tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Oct 11, 2024
1 parent 9ad4642 commit a2abccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crate/webi_output/src/outcome_info_graph_calculator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,13 +798,13 @@ fn process_item_interaction_pull_example<'item_location>(

if let Some(any_ids) = tag_items.get_mut(tag_id) {
any_ids.push(AnyId::from(node_id_server.clone()));
any_ids.push(AnyId::from(node_id_client.clone()));
any_ids.push(AnyId::from(node_id_client_file.clone()));
any_ids.push(AnyId::from(edge_id_request.clone()));
any_ids.push(AnyId::from(edge_id_response.clone()));
} else {
let any_ids = vec![
AnyId::from(node_id_server.clone()),
AnyId::from(node_id_client.clone()),
AnyId::from(node_id_client_file.clone()),
AnyId::from(edge_id_request.clone()),
AnyId::from(edge_id_response.clone()),
];
Expand Down

0 comments on commit a2abccf

Please sign in to comment.