From cfa09334407e962f57ba4aca7905265d22424c33 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 ebf6d58..b8ff1d1 100644 --- a/Pages/Component/TagSelectDialog.razor +++ b/Pages/Component/TagSelectDialog.razor @@ -8,11 +8,19 @@
@for(int i = 0; i < tagDefinitions.Count(); i++) { 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 + }); -