diff --git a/Elwig/Models/Dtos/DeliveryJournalData.cs b/Elwig/Models/Dtos/DeliveryJournalData.cs
index 3aad33a..f489c0f 100644
--- a/Elwig/Models/Dtos/DeliveryJournalData.cs
+++ b/Elwig/Models/Dtos/DeliveryJournalData.cs
@@ -100,7 +100,7 @@ namespace Elwig.Models.Dtos {
             Gradation = (p.Oe, p.Kmw);
             Weight = p.Weight;
             IsNetWeight = p.IsNetWeight;
-            Modifiers = string.Join(" / ", p.Modifiers.Order());
+            Modifiers = string.Join(" / ", p.Modifiers.Select(m => m.Name).Order());
             Comment = d.Comment == null && p.Comment == null ? null : (d.Comment + (d.Comment != null && p.Comment != null ? " / " : "") + p.Comment);
         }
     }