diff --git a/LiMan.UI/Components/ListApplicazioni.razor b/LiMan.UI/Components/ListApplicazioni.razor
index e12529b..54e5b2f 100644
--- a/LiMan.UI/Components/ListApplicazioni.razor
+++ b/LiMan.UI/Components/ListApplicazioni.razor
@@ -47,6 +47,7 @@
Applicazione |
@if (recordSel == null)
{
+
Tipo |
Descrizione |
}
@@ -75,6 +76,12 @@
@if (recordSel == null)
{
+
+ @if (!string.IsNullOrEmpty(record.Tipo))
+ {
+ @record.Tipo
+ }
+ |
@record.Descrizione
|
diff --git a/LiMan.UI/Components/ListReleases.razor b/LiMan.UI/Components/ListReleases.razor
index f16555d..af478a9 100644
--- a/LiMan.UI/Components/ListReleases.razor
+++ b/LiMan.UI/Components/ListReleases.razor
@@ -38,6 +38,7 @@
Rilascio |
Vers. Num |
Vers. Text |
+
Tags |
|
@@ -67,6 +68,9 @@
@record.VersText
|
+
+ @record.RelTags
+ |
@if (recordEdit == null)
{
|