Skip to content

Commit

Permalink
Update arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
ztroop committed Mar 22, 2024
1 parent 6e7e483 commit 9cff475
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified assets/demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/widgets/inspect_overlay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ pub fn inspect_overlay(
);

rows.push(Row::new(vec![format!(
" Characteristic: {}",
" Characteristic: {}",
characteristic.uuid.to_string()
)]));
rows.push(Row::new(vec![format!(" Properties: {}", properties)]));
rows.push(Row::new(vec![format!(" Properties: {}", properties)]));

for descriptor in characteristic.descriptors.iter() {
rows.push(Row::new(vec![format!(
" Descriptor: {}",
" Descriptor: {}",
descriptor.to_string()
)]));
}
Expand Down

0 comments on commit 9cff475

Please sign in to comment.