commit 4e3fcad7091d8857e98a32008ce628875c1c010e
parent 744483fbc00bd8104e0da6a39ed6e8ffaf4c43d4
Author: William Casarin <jb55@jb55.com>
Date: Mon, 14 Jul 2025 10:51:09 -0700
ui/note: show full link type in unhandled mentions
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/notedeck_ui/src/note/contents.rs b/crates/notedeck_ui/src/note/contents.rs
@@ -192,7 +192,7 @@ pub fn render_note_contents(
}
_ => {
- ui.colored_label(link_color, format!("@{}", &block.as_str()[4..16]));
+ ui.colored_label(link_color, format!("@{}", &block.as_str()[..16]));
}
},