diff --git a/Elwig/App.xaml b/Elwig/App.xaml
index f758573..fb1d62a 100644
--- a/Elwig/App.xaml
+++ b/Elwig/App.xaml
@@ -40,7 +40,8 @@
-
+
+
diff --git a/Elwig/Models/WineVar.cs b/Elwig/Models/WineVar.cs
index 7293496..7f1ebc9 100644
--- a/Elwig/Models/WineVar.cs
+++ b/Elwig/Models/WineVar.cs
@@ -16,7 +16,7 @@ namespace Elwig.Models {
[Column("comment")]
public string? Comment { get; private set; }
- public string NameWithComment => Name + ((Comment != null) ? $" ({Comment})" : "");
+ public string CommentFormat => (Comment != null) ? $" ({Comment})" : "";
public override string ToString() {
return Name;