From 8ae2a55f416aac0dc458a41931b7680035725b90 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Tue, 29 Aug 2023 01:59:14 +1000 Subject: Hovering over tags in the select dialog now shows the namespace and alias --- Pages/Component/TagSelectDialog.razor | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Pages/Component/TagSelectDialog.razor b/Pages/Component/TagSelectDialog.razor index 9008cc8..86ed8e7 100644 --- a/Pages/Component/TagSelectDialog.razor +++ b/Pages/Component/TagSelectDialog.razor @@ -12,11 +12,19 @@ if(!MatchesQuery(tagDefinitions[i].tagDefinition)) continue; var local = i; + var ns = tagDefinitions[i].tagDefinition.Namespace; + var alias = tagDefinitions[i].tagDefinition.Alias; + var title = string.Join(" ", new[] { + ns, + alias is not null ? $"({alias})" : null + }); -